This commit is contained in:
Utkarsh Khedkar
2025-11-13 13:12:18 +05:30
parent 15497076ae
commit 82bfcc5f33
3 changed files with 6 additions and 3 deletions

View File

@@ -38,7 +38,8 @@ 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');
// ✅ User Requests Controller Routes
@@ -56,4 +57,5 @@ Route::prefix('admin')->middleware('auth:admin')->group(function () {
Route::post('/orders/store', [AdminOrderController::class, 'store'])->name('admin.orders.store');
Route::get('/orders/{id}', [AdminOrderController::class, 'show'])->name('admin.orders.show');
});