develop (#45)
Co-authored-by: Juan Pablo Vial <jpvialb@incoviba.cl> Reviewed-on: #45
This commit is contained in:
@ -23,13 +23,23 @@ $app->group('/venta/{venta_id:[0-9]+}', function($app) {
|
||||
$app->get('[/]', [Ventas::class, 'propiedad']);
|
||||
});
|
||||
$app->group('/pie', function($app) {
|
||||
$app->get('/add[/]', [Ventas\Pies::class, 'add']);
|
||||
$app->group('/cuotas', function($app) {
|
||||
$app->get('[/]', [Ventas::class, 'cuotas']);
|
||||
});
|
||||
$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) {
|
||||
$app->get('[/]', Ventas\Abono\Cuotas::class);
|
||||
});
|
||||
$app->get('/add[/]', [Ventas\Escrituras::class, 'add']);
|
||||
$app->get('[/]', [Ventas\Escrituras::class, 'show']);
|
||||
});
|
||||
$app->group('/credito', function($app) {
|
||||
$app->get('[/]', [Ventas\Creditos::class, 'show']);
|
||||
|
Reference in New Issue
Block a user