11 lines
292 B
PHP
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']);
|
|
});
|