Reservas
This commit is contained in:
@ -10,6 +10,7 @@ $app->group('/reservations', function($app) {
|
||||
});
|
||||
$app->get('[/]', Reservations::class);
|
||||
});
|
||||
$app->post('/reservation/add[/]', [Reservations::class, 'addOne']);
|
||||
$app->group('/reservation/{reservation_id}', function($app) {
|
||||
$app->post('/edit[/]', [Reservations::class, 'edit']);
|
||||
$app->delete('[/]', [Reservations::class, 'delete']);
|
||||
|
Reference in New Issue
Block a user