revised approve system and some minor fixes

This commit is contained in:
Jagad R R
2025-01-02 17:59:33 +07:00
parent ff004299c1
commit 8255a530af
21 changed files with 422 additions and 31 deletions
+1
View File
@@ -76,6 +76,7 @@ Route::middleware(['auth:admin', 'menu'])->group(function () {
Route::prefix('forms')->group(function () {
// Up Country
Route::get('/up-country', [FormUpCountryController::class, 'index'])->name('forms.up-country');
Route::get('/up-country/detail/{id}', [FormUpCountryController::class, 'detail'])->name('forms.up-country.detail');
Route::get('/up-country/create', [FormUpCountryController::class, 'create'])->name('forms.up-country.create');
Route::post('/up-country/store', [FormUpCountryController::class, 'store'])->name('forms.up-country.store');
Route::get('/up-country/edit/{id}', [FormUpCountryController::class, 'edit'])->name('forms.up-country.edit');