Files
ui/resources/routes/05_ventas.php
2022-06-13 21:36:11 -04:00

7 lines
291 B
PHP

<?php
$app->group('/ventas', function($app) {
$app->get('/{proyecto_id}', [\Incoviba\UI\Common\Controller\Ventas::class, 'get']);
$app->get('[/]', \Incoviba\UI\Common\Controller\Ventas::class);
});
$app->get('/precios', [\Incoviba\UI\Common\Controller\Precios::class, 'proyectos']);