Poder editar la direccion de un proyecto

This commit is contained in:
Juan Pablo Vial
2025-02-24 18:15:16 -03:00
parent 894d09ea6f
commit c1528d667a
6 changed files with 252 additions and 3 deletions

View File

@ -9,3 +9,7 @@ $app->group('/direcciones', function($app) {
$app->post('/find[/]', [Direcciones::class, 'findComunas']);
});
});
$app->group('/direccion/{direccion_id:[0-9]+}', function($app) {
$app->post('/edit[/]', [Direcciones::class, 'edit']);
$app->get('[/]', [Direcciones::class, 'get']);
});