Notifications not shown on redirect

I am trying to implement notifications outside the panel. Why isn't any notification shown when using redirects ?

Route::get("test", function(){
    Notification::make()
        ->body("test")
        ->title("test")
        ->success()
        ->send();
    return redirect("/");
});

Without redirects, it works (so yes, I have added @livewire('notifications') to the template.

My current usecase is verifying a registered email address and then redirect to the homepage, where I wanna show the user a notification, that it was a success.
Was this page helpful?