Files
operadores/ui/resources/routes/01_facturas.php
2021-08-16 22:13:15 -04:00

11 lines
329 B
PHP

<?php
use Incoviba\Common\Controller\Facturas;
$app->group('/facturas', function($app) {
$app->group('/{id_proyecto:[0-9]+}', function($app) {
$app->get('/{id_operador:[0-9]+}[/]', [Facturas::class, 'proyecto_operador']);
$app->get('[/]', [Facturas::class, 'proyecto']);
});
$app->get('[/]', Facturas::class);
});