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

11 lines
408 B
PHP

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