Redirect to panel with notification
Does anyone know how to redirect from a controller to a panel with a notification?
return redirect('/admin')->with('success', 'My success message.');
doesn't work.
CheersSolution:Jump to solution
Solution from Mark Chaney: If you do a notificaiton and then immediately do a redirect, it will show on the next page.
2 Replies
Solution
Solution from Mark Chaney: If you do a notificaiton and then immediately do a redirect, it will show on the next page.
GitHub
How can I show a notification after a redirection? · filamentphp fi...
I'm redirecting from an internal class in my app to a Filament resource's page, and I want to show a notification.