penambahan route memo, dan lpj
This commit is contained in:
@@ -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.
|
* Show the specified resource.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -537,8 +537,13 @@ Route::middleware(['auth'])->group(function () {
|
|||||||
|
|
||||||
Route::get('lampiran/{id}', [PenilaiController::class, 'lampiran'])->name('lampiran');
|
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('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');
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user