Files
operadores/api/resources/routes/01_ventas.php

13 lines
325 B
PHP
Raw Normal View History

2021-08-10 15:48:33 -04:00
<?php
use Incoviba\Common\Controller\Ventas;
$app->group('/ventas', function($app) {
$app->get('[/]', Ventas::class);
});
$app->group('/venta/{id_venta}', function($app) {
$app->group('/operador', function($app) {
$app->get('[/]', [Ventas::class, 'operador']);
});
$app->get('[/]', [Ventas::class, 'show']);
});