funcion/planilla-pedidos-total #33

Merged
atasistro merged 25 commits from funcion/planilla-pedidos-total into master 2024-10-08 20:07:57 -03:00
Showing only changes of commit 800fed2097 - Show all commits

View file

@ -70,3 +70,7 @@ Route::middleware('auth')->group( function() {
})->name('obtenerSesion'); })->name('obtenerSesion');
}); });
}); });
Route::middleware(['auth', 'comi_compras'])->group( function() {
Route::get('/compras/pedidos', 'ComprasController@pedidos')->name('compras.pedidos');
});