diff --git a/app/Http/Controllers/RegistrasiController.php b/app/Http/Controllers/RegistrasiController.php index 60633f8..5dc2e65 100644 --- a/app/Http/Controllers/RegistrasiController.php +++ b/app/Http/Controllers/RegistrasiController.php @@ -192,7 +192,7 @@ $data['message'] = 'no ajax request'; } - return response()->json($data)->with('success', 'Permohonan updated successfully'); + return response()->json($data); } diff --git a/module.json b/module.json index 9edd356..524ca13 100644 --- a/module.json +++ b/module.json @@ -62,7 +62,7 @@ { "title": "Pembatalan", "path": "", - "icon": "ki-filled ki-file-deleted text-lg", + "icon": "ki-filled ki-file-deleted text-lg text-danger", "classes": "", "attributes": [], "permission": "", @@ -84,7 +84,7 @@ { "title": "Authorization", "path": "authorization", - "icon": "ki-filled ki-some-files text-lg", + "icon": "ki-filled ki-security-user text-lg", "classes": "", "attributes": [], "permission": "", @@ -95,7 +95,7 @@ { "title": "Registrasi", "path": "registrasi", - "icon": "ki-filled ki-some-files text-lg", + "icon": "ki-filled ki-file-added text-lg", "classes": "", "attributes": [], "permission": "", @@ -106,7 +106,7 @@ { "title": "Assignment", "path": "penilaian", - "icon": "ki-filled ki-badge", + "icon": "ki-filled ki-badge text-lg", "classes": "", "attributes": [], "permission": "", @@ -117,7 +117,7 @@ { "title": "Activity", "path": "activity", - "icon": "ki-filled ki-some-files text-lg", + "icon": "ki-filled ki-calendar-edit text-lg", "classes": "", "attributes": [], "permission": "", @@ -128,7 +128,7 @@ { "title": "Laporan", "path": "", - "icon": "ki-filled ki-some-files text-lg", + "icon": "ki-filled ki-filter-tablet text-lg", "classes": "", "attributes": [], "permission": "", diff --git a/routes/web.php b/routes/web.php index c2879b5..cf0e679 100644 --- a/routes/web.php +++ b/routes/web.php @@ -461,3 +461,5 @@ Route::get('download/{id}', [ActivityController::class, 'download'])->name('download'); }); }); + + require __DIR__ . '/registrasi.php';