where('path', '.*') ->name('media.legacy'); Route::middleware('web')->group(function () { Route::get('/', [HomeController::class, 'index'])->name('home'); Route::get('/lang/{locale}', [LanguageController::class, 'switch'])->name('lang.switch'); Route::get('/dashboard', fn () => auth()->check() ? redirect()->route('panel.listings.index') : redirect()->route('login')) ->name('dashboard'); });