v0.1.0
This commit is contained in:
@ -10,6 +10,7 @@ $app->group('/facturas', function($app) {
|
||||
});
|
||||
$app->group('/factura/{id_factura}', function($app) {
|
||||
$app->group('/ventas', function($app) {
|
||||
$app->post('/add[/]', [Facturas::class, 'add_venta']);
|
||||
$app->get('[/]', [Facturas::class, 'ventas']);
|
||||
});
|
||||
});
|
||||
|
@ -8,5 +8,8 @@ $app->group('/venta/{id_venta}', function($app) {
|
||||
$app->group('/operador', function($app) {
|
||||
$app->get('[/]', [Ventas::class, 'operador']);
|
||||
});
|
||||
$app->group('/facturas', function($app) {
|
||||
$app->get('[/]', [Ventas::class, 'facturas']);
|
||||
});
|
||||
$app->get('[/]', [Ventas::class, 'show']);
|
||||
});
|
||||
|
Reference in New Issue
Block a user