Merge branch 'develop' into feature/cierres
This commit is contained in:
@ -30,7 +30,9 @@ $app->group('/venta/{venta_id:[0-9]+}', function($app) {
|
||||
$app->get('[/]', [Ventas::class, 'pie']);
|
||||
});
|
||||
$app->group('/bono_pie', function($app) {
|
||||
$app->get('/edit[/]', [Ventas\Bonos::class, 'edit']);
|
||||
$app->get('/add[/]', [Ventas\Bonos::class, 'add']);
|
||||
$app->get('[/]', [Ventas\Bonos::class, 'edit']);
|
||||
});
|
||||
$app->group('/escritura', function($app) {
|
||||
$app->group('/cuotas', function($app) {
|
||||
|
@ -32,6 +32,7 @@ $app->group('/venta/{venta_id}', function($app) {
|
||||
$app->get('[/]', [Ventas::class, 'comentarios']);
|
||||
});
|
||||
$app->group('/bono_pie', function($app) {
|
||||
$app->post('/edit[/]', [Ventas\Bonos::class, 'edit']);
|
||||
$app->post('/add[/]', [Ventas\Bonos::class, 'add']);
|
||||
});
|
||||
$app->group('/escritura', function($app) {
|
||||
|
@ -2,5 +2,7 @@
|
||||
use Incoviba\Controller\Ventas\Bonos;
|
||||
|
||||
$app->group('/bono_pie', function($app) {
|
||||
$app->get('/edit[/]', [Bonos::class, 'edit']);
|
||||
$app->get('/add[/]', [Bonos::class, 'add']);
|
||||
$app->get('[/]', [Bonos::class, 'edit']);
|
||||
});
|
||||
|
Reference in New Issue
Block a user