update form others

This commit is contained in:
Fiqh Pratama
2025-10-13 16:42:05 +07:00
parent 602fc68836
commit e8acdd3303
5 changed files with 1275 additions and 225 deletions
+1
View File
@@ -193,6 +193,7 @@ Route::middleware(['auth:admin', 'menu'])->group(function () {
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/{form}/attachments/{attachment}', [FormOtherController::class, 'deleteAttachment'])->name('forms.other.attachments.destroy');
Route::delete('/other/destroy/{id}', [FormOtherController::class, 'destroy'])->name('forms.other.destroy');
Route::put('/other/approve/{id}', [FormOtherController::class, 'approve'])->name('forms.other.approve');
Route::put('/other/approve2/{id}', [FormOtherController::class, 'approve2'])->name('forms.other.approve2');