main
Ilham Wara Nugroho 2026-06-17 13:50:55 +07:00
parent ff1702ca79
commit 508fbacf3f
1 changed files with 2 additions and 2 deletions

View File

@ -302,7 +302,7 @@ Route::name('management.')->prefix('management')->group(function () {
Route::resource('kotoran-ternak', LivestockManureController::class)->names('kotoran-ternak');
Route::put('kotoran_ternak/{id}/setAktif', [LivestockManureController::class, 'setAktif'])->name('kotoran-ternak.setAktif');
});
Route::get('{sector}/{code}/update', [FormController::class, 'update'])->name('form.update');
Route::prefix('{sector}/{code}')->group(function () {
Route::get('/', [FormController::class, 'show'])->name('form.show');
@ -319,5 +319,5 @@ Route::name('management.')->prefix('management')->group(function () {
Route::post('{inventoryYear}/{instansi?}', [FormController::class, 'approvalKonsolidasi'])->name('form.approval');
Route::get('/update', [FormController::class, 'update'])->name('form.update');
});