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

10 lines
234 B
PHP
Raw Normal View History

2023-07-25 17:03:57 -04:00
<?php
use Incoviba\Controller\Ventas\Cierres;
$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']);
});