update data pemanding dan otorisator, pembuatan seeder kjpp mengunakan exel
This commit is contained in:
@@ -529,6 +529,10 @@
|
||||
});
|
||||
}
|
||||
|
||||
Breadcrumbs::for('otorisator.show', function (BreadcrumbTrail $trail, $id, $type) {
|
||||
$trail->push("Detail $type", route('otorisator.show', ['id' => $id, 'type' => $type]));
|
||||
});
|
||||
|
||||
|
||||
Breadcrumbs::for('laporan', function (BreadcrumbTrail $trail) {
|
||||
$trail->push('Laporan', route('laporan.sederhana.index'));
|
||||
|
||||
@@ -496,15 +496,19 @@ Route::middleware(['auth'])->group(function () {
|
||||
'type',
|
||||
'pembayaran',
|
||||
);
|
||||
|
||||
Route::post('otorisator/{id}/{context}', [PenilaianController::class, 'otorisatorUpdate'])->name('otorisator.update');
|
||||
|
||||
Route::get('pembatalan', [PenilaianController::class, 'otorisator'])->name('pembatalan.index')->defaults(
|
||||
'type',
|
||||
'pembatalan',
|
||||
);
|
||||
|
||||
Route::get('sla', [PenilaianController::class, 'otorisator'])->name('sla.index')->defaults('type', 'sla');
|
||||
Route::get('/datatables/{otorisator}', [PenilaianController::class, 'dataForAuthorization'])->name(
|
||||
'datatables',
|
||||
);
|
||||
Route::get('show/{id}', [PenilaianController::class, 'show'])->name('show');
|
||||
Route::get('show/{id}/{type}', [PenilaianController::class, 'show'])->name('show');
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user