Files
api/resources/routes/proyectos.php
2021-11-30 18:04:41 -03:00

13 lines
411 B
PHP

<?php
use Incoviba\API\Common\Controller\Proyectos;
$app->group('/proyectos', function ($app) {
$app->post('/add[/]', [Proyectos::class, 'add']);
$app->get('[/]', Proyectos::class);
});
$app->group('/proyecto/{proyecto_id}', function ($app) {
$app->put('/edit[/]', [Proyectos::class, 'edit']);
$app->delete('/edit[/]', [Proyectos::class, 'delete']);
$app->get('[/]', [Proyectos::class, 'show']);
});