Files
oficial/app/resources/routes/ventas/cierres.php
2023-07-28 17:17:04 -04:00

10 lines
234 B
PHP

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