Frontend(Create Order)

This commit is contained in:
Utkarsh Khedkar
2025-11-14 13:47:01 +05:30
parent 5d29c8accb
commit 2c5d19779b
4 changed files with 485 additions and 226 deletions

View File

@@ -38,6 +38,7 @@ 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');