Ventas->Listado->Ventas
This commit is contained in:
@ -4,3 +4,6 @@ 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']);
|
||||
});
|
||||
|
Reference in New Issue
Block a user