Files
oficial/app/resources/routes/03_proyectos.php
2023-10-20 19:03:29 -03:00

11 lines
302 B
PHP

<?php
use Incoviba\Controller\Proyectos;
$app->group('/proyectos', function($app) {
$app->get('/unidades[/]', [Proyectos::class, 'unidades']);
$app->get('[/]', Proyectos::class);
});
$app->group('/proyecto/{proyecto_id}', function($app) {
$app->get('[/]', [Proyectos::class, 'show']);
});