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;
color: #2b5cb6 !important;
text-decoration: none;
padding: 10px 12px;
padding: 11px 13px;
font-size: 0.97rem;
border-radius: 12px;
margin: 6px 6px 0 6px;
margin: 10px 10px 0 10px;
font-weight: 500;
position: relative;
overflow: hidden;
transition: all 0.25s ease;
z-index: 0;
}
/* Background Animation */

View File

View File

@@ -41,6 +41,7 @@ Route::prefix('admin')->middleware('auth:admin')->group(function () {
// ✅ User Requests Controller Routes
Route::get('/requests', [UserRequestController::class, 'index'])->name('admin.requests');
Route::get('/requests/approve/{id}', [UserRequestController::class, 'approve'])->name('admin.requests.approve');
@@ -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');
});