How to redirect route to panel with id or channel_id?

I have this route:
Route::get('/login', function () {
return redirect(route('filament.admin.auth.login'));
})->name('login');

Supposedly I'm doing the email verification and once verified it goes to the login but after that I wanted it to go to the admin panel, the redirect isn't exactly that, so what's there goes to the home page 127.0.0.1:8000, The intention was to go to the panel through the channel if I understand myself, can anyone help?
Was this page helpful?