Update Module Permohonan

Penambahan Create FUnction pada List Debitur
This commit is contained in:
Daeng Deni Mardaeni
2024-09-04 20:27:40 +07:00
parent 3a787fb176
commit 0f6c693bba
3 changed files with 8 additions and 2 deletions

View File

@@ -162,6 +162,7 @@
});
Route::name('permohonan.')->prefix('permohonan')->group(function () {
Route::get('{id}/create', [PermohonanController::class, 'createPermohonan'])->name('create.debitur');
Route::get('download/{id}', [PermohonanController::class, 'download'])->name('download');
Route::get('restore/{id}', [PermohonanController::class, 'restore'])->name('restore');
Route::get('datatables', [PermohonanController::class, 'dataForDatatables'])