2023-07-24 20:55:26 -04:00
|
|
|
<?php
|
|
|
|
use Incoviba\Controller\Proyectos;
|
|
|
|
|
|
|
|
$app->group('/proyectos', function($app) {
|
2023-10-13 10:45:21 -03:00
|
|
|
$app->get('/unidades[/]', [Proyectos::class, 'unidades']);
|
2023-07-24 20:55:26 -04:00
|
|
|
$app->get('[/]', Proyectos::class);
|
|
|
|
});
|
2023-10-20 19:03:29 -03:00
|
|
|
$app->group('/proyecto/{proyecto_id}', function($app) {
|
|
|
|
$app->get('[/]', [Proyectos::class, 'show']);
|
|
|
|
});
|