Changes
This commit is contained in:
@@ -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 */
|
||||||
|
|||||||
0
resources/views/invoice-create.blade.php
Normal file
0
resources/views/invoice-create.blade.php
Normal 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');
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user