revised approve system and some minor fixes
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user