This commit is contained in:
2023-11-29 22:21:46 -03:00
parent 9991b7c6a3
commit 17f93dcd34
6 changed files with 93 additions and 0 deletions

View File

@ -26,6 +26,7 @@ $app->group('/venta/{venta_id:[0-9]+}', function($app) {
$app->group('/cuotas', function($app) {
$app->get('[/]', [Ventas::class, 'cuotas']);
});
$app->get('[/]', [Ventas::class, 'pie']);
});
$app->get('/edit[/]', [Ventas::class, 'edit']);
$app->get('[/]', [Ventas::class, 'show']);