Ventas->Listado->Ventas
This commit is contained in:
@ -4,3 +4,8 @@ use Incoviba\Controller\Ventas\Precios;
|
||||
$app->group('/precios', function($app) {
|
||||
$app->post('[/]', [Precios::class, 'proyecto']);
|
||||
});
|
||||
$app->group('/precio', function($app) {
|
||||
$app->group('/unidad/{unidad_id}', function($app) {
|
||||
$app->get('[/]', [Precios::class, 'unidad']);
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user