Redirect to List after Edit - Global setting?
Hi, the default behaviour after editing a resource is to stay on that resource's page. Is it possible to make a global change to redirect on edit to the List view?
Solution:Jump to solution
Starting with Filament v4, there is a global configuration option for this:
```
use Filament\Panel;
...
6 Replies
This is a per view setting. I am looking for a global setting.
You can create own abstract class
EditRecord
and put that code inside it. Next, just extend your edit views with created class, instead of class owned by Filament.Solution
Starting with Filament v4, there is a global configuration option for this:
https://filamentphp.com/docs/4.x/resources/creating-records#customizing-redirects
Lovely