name('home'); Route::view('dashboard', 'dashboard') ->middleware(['auth', 'verified']) ->name('dashboard'); Route::middleware(['auth'])->group(function () { Route::redirect('settings', 'settings/profile'); Route::get('settings/profile', Profile::class)->name('settings.profile'); Route::get('settings/password', Password::class)->name('settings.password'); Route::get('settings/appearance', Appearance::class)->name('settings.appearance'); }); require __DIR__ . '/auth.php'; Route::get("{path}.sh", function (string $path) { $script = Script::where('path', $path)->firstOrFail(); return response($script->content, 200)->header('Content-Type', 'text/plain'); })->name('script-content'); Route::get("{path}", function (string $path) { $script = Script::where('path', $path)->firstOrFail(); return view('script', compact('script')); })->name('script-view');