This commit is contained in:
Abhishek Mali
2025-11-14 14:00:36 +05:30
4 changed files with 493 additions and 229 deletions

View File

@@ -39,7 +39,9 @@ Route::prefix('admin')->middleware('auth:admin')->group(function () {
Route::get('/staff', fn() => view('admin.staff'))->name('admin.staff');
Route::get('/account', fn() => view('admin.account'))->name('admin.account');
Route::get('/profile', fn() => view('admin.profile'))->name('admin.profile');
Route::get('/admin/orders/{id}/details', [OrderController::class, 'getOrderDetails'])->name('admin.orders.details');
// ✅ User Requests Controller Routes
@@ -78,6 +80,7 @@ Route::prefix('admin')->middleware('auth:admin')->group(function () {
<<<<<<< HEAD
Route::get('/shipments', [ShipmentController::class, 'index'])
->name('admin.shipments');
@@ -89,5 +92,7 @@ Route::prefix('admin')->middleware('auth:admin')->group(function () {
Route::get('/shipments/{id}', [ShipmentController::class, 'show'])
->name('admin.shipments.show');
=======
>>>>>>> 2c5d19779b747ce1d7f0bc8978d8c417b374849f3b9023bf30ac502d14d9650d
});