added form others

This commit is contained in:
Jagad R R
2024-12-20 11:07:07 +07:00
parent cd28280fb6
commit 53b60c42d6
18 changed files with 671 additions and 102 deletions
+9
View File
@@ -15,6 +15,7 @@ use App\Http\Controllers\Master\CategoryController;
use App\Http\Controllers\Forms\FormVehicleController;
use App\Http\Controllers\Forms\FormEntertainmentPresentationController;
use App\Http\Controllers\Forms\FormMeetingSeminarController;
use App\Http\Controllers\Forms\FormOtherController;
use Illuminate\Support\Facades\Storage;
use App\Helpers\NextCloudHelper;
@@ -99,6 +100,14 @@ Route::middleware(['auth:admin', 'menu'])->group(function () {
Route::get('/meeting-seminar/edit/{id}', [FormMeetingSeminarController::class, 'edit'])->name('forms.meeting.edit');
Route::put('/meeting-seminar/update/{id}', [FormMeetingSeminarController::class, 'update'])->name('forms.meeting.update');
Route::delete('/meeting-seminar/destroy/{id}', [FormMeetingSeminarController::class, 'destroy'])->name('forms.meeting.destroy');
// Other
Route::get('/other', [FormOtherController::class, 'index'])->name('forms.other');
Route::get('/other/create', [FormOtherController::class, 'create'])->name('forms.other.create');
Route::post('/other/store', [FormOtherController::class, 'store'])->name('forms.other.store');
Route::get('/other/edit/{id}', [FormOtherController::class, 'edit'])->name('forms.other.edit');
Route::put('/other/update/{id}', [FormOtherController::class, 'update'])->name('forms.other.update');
Route::delete('/other/destroy/{id}', [FormOtherController::class, 'destroy'])->name('forms.other.destroy');
});
//Menu Role