group(function () { Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit'); Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update'); Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy'); Route::put('/profile/{id}', [ProfileController::class, 'updateprofile'])->name('profile.updateprofile'); // Route::put('/profile/{id}', 'ProfileController@updateprofile')->name('profile.update'); Route::post('/profile-update', [ProfileController::class, 'updatePhoto'])->name('profile-update'); Route::get('/setting', [ProfileController::class, 'setting'])->name('profile.setting'); }); Route::group(['prefix' => 'dashboard'], function () { //Halaman dashboard Route::middleware('auth')->get('', function () { return view('dashboard.index'); }); //Halaman Transaksi Route::middleware('auth')->resource('/transaksi', TransaksiController::class); //Halaman Peminjaman Route::middleware('auth')->resource('/peminjaman', PeminjamanController::class); //Halaman Pengembalian Route::middleware('auth')->resource('/pengembalian', PengembalianController::class); //Halaman Pengadaan Route::middleware('auth')->resource('/pengadaan', PengadaanController::class); //Halaman Setting Platform Route::middleware('auth')->resource('/settingPlatform', SettingPlatformController::class); }); require __DIR__ . '/auth.php';