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

8 lines
195 B
PHP

<?php
use Incoviba\Common\Controller\Ventas;
$app->group('/ventas', function($app) {
$app->get('/{proyecto_id:[0-9]+}[/]', [Ventas::class, 'proyecto']);
$app->get('[/]', Ventas::class);
});