diff --git a/app/resources/routes/04_ventas.php b/app/resources/routes/04_ventas.php index 625f139..49400bb 100644 --- a/app/resources/routes/04_ventas.php +++ b/app/resources/routes/04_ventas.php @@ -32,6 +32,9 @@ $app->group('/venta/{venta_id:[0-9]+}', function($app) { $app->get('/add[/]', [Ventas\Bonos::class, 'add']); }); $app->group('/escritura', function($app) { + $app->group('/cuotas', function($app) { + $app->get('[/]', Ventas\Abono\Cuotas::class); + }); $app->get('/add[/]', [Ventas\Escrituras::class, 'add']); }); $app->group('/credito', function($app) {