Admin producto y mirar mapa

This commit is contained in:
2020-05-27 13:39:14 -04:00
parent 31f308f5c7
commit 24c74d2887
9 changed files with 294 additions and 41 deletions

View File

@ -6,6 +6,7 @@ $app->group('/productos', function($app) {
$app->get('[/]', [Productos::class, 'add']);
$app->post('[/]', [Productos::class, 'do_add']);
});
$app->post('/delete', [Productos::class, 'delete']);
$app->get('[/]', Productos::class);
});
$app->group('/producto/{producto}', function($app) {