where can I set the redirect url after user logout?

when user logouts from the user menu in filament v3 dashboard it redirects the user to /admin/login page. is it possible to redirect the user to
/login
page ?
Solution
finally I solved by naming the login redirect route :
Route::get('/admin/login', function () {
    return redirect()->to('login');
})->name('filament.admin.auth.login');
Was this page helpful?