diff --git a/app/Http/Controllers/PenilaiController.php b/app/Http/Controllers/PenilaiController.php index 968d631..84fc00b 100644 --- a/app/Http/Controllers/PenilaiController.php +++ b/app/Http/Controllers/PenilaiController.php @@ -54,6 +54,25 @@ class PenilaiController extends Controller // } + public function sederhana() + { + return view('lpj::laporan.sederhana_index'); + } + + public function standard() + { + return view('lpj::laporan.standard_index'); + } + + public function resume(){ + return view('lpj::resume.index'); + } + + public function memo(){ + return view('lpj::resume.index'); + } + + /** * Show the specified resource. */ diff --git a/routes/web.php b/routes/web.php index 9ded839..011dbc1 100644 --- a/routes/web.php +++ b/routes/web.php @@ -537,8 +537,13 @@ Route::middleware(['auth'])->group(function () { Route::get('lampiran/{id}', [PenilaiController::class, 'lampiran'])->name('lampiran'); Route::get('export/kertas-kerja', [PenilaiController::class, 'kertas_kerja'])->name('export.kertas-kerja'); + Route::get('export/kertas-kerja', [PenilaiController::class, 'kertas_kerja'])->name('export.kertas-kerja'); + Route::get('export/kertas-kerja', [PenilaiController::class, 'kertas_kerja'])->name('export.kertas-kerja'); - + Route::get('sederhana/{id}', [PenilaiController::class, 'sederhana'])->name('sederhana'); + Route::get('standard/{id}', [PenilaiController::class, 'standard'])->name('standard'); + Route::get('resume/{id}', [PenilaiController::class, 'standard'])->name('resume'); + Route::get('memo/{id}', [PenilaiController::class, 'standard'])->name('memo'); });