Files
operadores/api/resources/routes/02_proyectos.php
2021-08-10 15:48:33 -04:00

13 lines
342 B
PHP

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