Files
oficial/app/resources/routes/ventas/cierres.php

11 lines
292 B
PHP
Raw Normal View History

2023-07-25 17:03:57 -04:00
<?php
2025-07-22 18:21:05 -04:00
//use Incoviba\Controller\Ventas\Cierres;
use Incoviba\Controller\Ventas\Reservations as Cierres;
2023-07-25 17:03:57 -04:00
$app->group('/cierres', function($app) {
$app->get('[/]', Cierres::class);
});
2023-07-28 16:22:20 -04:00
$app->group('/cierre/{cierre_id}', function($app) {
$app->get('[/]', [Cierres::class, 'show']);
});