Access Dashboard without Auth

is it possible to access filament dashboard without login and registeration????????????
Solution
this?
Route::get('/auto-login', function () {
    Auth::loginUsingId(1);
    return redirect('/admin');
});
Was this page helpful?