Files
oficial/app/resources/routes/ventas/cierres.php
Juan Pablo Vial 909bb2b879 Mostrar reservas
2025-07-22 18:21:05 -04:00

11 lines
292 B
PHP

<?php
//use Incoviba\Controller\Ventas\Cierres;
use Incoviba\Controller\Ventas\Reservations as Cierres;
$app->group('/cierres', function($app) {
$app->get('[/]', Cierres::class);
});
$app->group('/cierre/{cierre_id}', function($app) {
$app->get('[/]', [Cierres::class, 'show']);
});