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

@@ -56,15 +56,16 @@
align-items: center; align-items: center;
color: #2b5cb6 !important; color: #2b5cb6 !important;
text-decoration: none; text-decoration: none;
padding: 10px 12px; padding: 11px 13px;
font-size: 0.97rem; font-size: 0.97rem;
border-radius: 12px; border-radius: 12px;
margin: 6px 6px 0 6px; margin: 10px 10px 0 10px;
font-weight: 500; font-weight: 500;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
transition: all 0.25s ease; transition: all 0.25s ease;
z-index: 0; z-index: 0;
} }
/* Background Animation */ /* Background Animation */

View File

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('/staff', fn() => view('admin.staff'))->name('admin.staff');
Route::get('/account', fn() => view('admin.account'))->name('admin.account'); Route::get('/account', fn() => view('admin.account'))->name('admin.account');
Route::get('/profile', fn() => view('admin.profile'))->name('admin.profile'); Route::get('/profile', fn() => view('admin.profile'))->name('admin.profile');
// ✅ User Requests Controller Routes // ✅ 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::post('/orders/store', [AdminOrderController::class, 'store'])->name('admin.orders.store');
Route::get('/orders/{id}', [AdminOrderController::class, 'show'])->name('admin.orders.show'); Route::get('/orders/{id}', [AdminOrderController::class, 'show'])->name('admin.orders.show');
}); });