diff --git a/resources/views/Admin/pages/manage_users/restaurants_app/restaurants_users.blade.php b/resources/views/Admin/pages/manage_users/restaurants_app/restaurants_users.blade.php index 617d5ee..33a92a7 100644 --- a/resources/views/Admin/pages/manage_users/restaurants_app/restaurants_users.blade.php +++ b/resources/views/Admin/pages/manage_users/restaurants_app/restaurants_users.blade.php @@ -173,7 +173,7 @@ $currentPage = 'manage-restaurant_app'; --> -
+ @csrf @@ -414,6 +414,8 @@ $currentPage = 'manage-restaurant_app'; } + + - --> + + + + + - @endsection \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index efc4457..3d0257b 100644 --- a/routes/web.php +++ b/routes/web.php @@ -219,12 +219,13 @@ Route::group(['middleware' => ['checkStatus']], function () { Route::get('/change_location_status', [ManageLocationController::class, 'change_location_status']); Route::delete('/delete_location/{id}', [ManageLocationController::class, 'delete_location']); Route::post('/update_location', [ManageLocationController::class, 'update_location']); - + //*******************************************************Rules and regulation******************************************************** + //*******************************************************manage redemptions rules******************************************************** Route::get('/manage_rules', [ManageRulesController::class, 'index'])->name('manage_rules'); Route::get('/rules_edit/{id}', [ManageRulesController::class, 'edit'])->name('rules_edit'); Route::post('/update_rules', [ManageRulesController::class, 'update']); - + //*******************************************************manage referral rules******************************************************** Route::get('/manage_referral_rules', [ ManageReferralController::class, 'index'])->name('manage_referral'); Route::get('/referral_rules_edit/{id}', [ManageReferralController::class, 'editReferral'])->name('edit.referralRules'); Route::post('/update_referral_rules', [ManageReferralController::class, 'updateReferral']);