diff --git a/app/Http/Controllers/Api/PedidoController.php b/app/Http/Controllers/Api/PedidoController.php new file mode 100644 index 0000000..b61b3e2 --- /dev/null +++ b/app/Http/Controllers/Api/PedidoController.php @@ -0,0 +1,22 @@ +group(function () { }); }); + Route::prefix('pedidos')->group(function () { + Route::get('/generar_tablas','Api\PedidoController@generarTablas'); + }); + Route::prefix('subpedidos')->group(function () { Route::get('/','Api\SubpedidoController@index'); Route::get('{subpedido}','Api\SubpedidoController@show');