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

12 lines
348 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) {
2025-09-11 11:31:03 -03:00
$app->get('/project/{project_id}', Cierres::class);
2023-07-25 17:03:57 -04:00
$app->get('[/]', Cierres::class);
});
2023-07-28 16:22:20 -04:00
$app->group('/cierre/{cierre_id}', function($app) {
$app->get('[/]', [Cierres::class, 'show']);
});