From dc57f98ca883260aeb99febc2feb7601896a82f5 Mon Sep 17 00:00:00 2001 From: ilhamwara Date: Mon, 4 Aug 2025 09:51:09 +0700 Subject: [PATCH] update --- routes/modules/modules.php | 1 - routes/web.php | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/modules/modules.php b/routes/modules/modules.php index a77e698..9d163b6 100644 --- a/routes/modules/modules.php +++ b/routes/modules/modules.php @@ -32,7 +32,6 @@ Route::post('profile-sekolah',[ProfileController::class,'store'])->name('profile Route::post('getForm',[AjaxController::class,'getForm'])->name('getForm'); Route::post('getSekolahSK',[AjaxController::class,'getSekolahSK'])->name('getSekolahSK'); Route::post('getSekolahUsulan',[AjaxController::class,'getSekolahUsulan'])->name('getSekolahUsulan'); -Route::post('uploadTemp', [AjaxController::class, 'uploadTemp'])->name('uploadTemp'); Route::name('master.')->prefix('master')->group(function () { diff --git a/routes/web.php b/routes/web.php index 9c55c65..6729c5d 100644 --- a/routes/web.php +++ b/routes/web.php @@ -26,6 +26,7 @@ Route::post('get/kabupaten',[AjaxController::class,'getKabupaten'])->name('getKa Route::post('get/kecamatan',[AjaxController::class,'getKecamatan'])->name('getKecamatan'); Route::post('get/sekolah',[AjaxController::class,'getSekolah'])->name('getSekolah'); Route::post('sekolahNpsn',[AjaxController::class,'sekolahNpsn'])->name('sekolahNpsn'); +Route::post('uploadTemp', [AjaxController::class, 'uploadTemp'])->name('uploadTemp'); Route::get('hash/{hash}', function ($hash) { return Hash::make($hash); });