Customizing data before filling the form
You may wish to modify the data from a record before it is filled into the form. To do this, you may define amutateFormDataBeforeFill() method on the Edit page class to modify the $data array, and return the modified version before it is filled into the form:
Customizing data before saving
Sometimes, you may wish to modify form data before it is finally saved to the database. To do this, you may define amutateFormDataBeforeSave() method on the Edit page class, which accepts the $data as an array, and returns it modified:
Customizing the saving process
You can tweak how the record is updated using thehandleRecordUpdate() method on the Edit page class:
Customizing form redirects
By default, saving the form will not redirect the user to another page. You may set up a custom redirect when the form is saved by overriding thegetRedirectUrl() method on the Edit page class.
For example, the form can redirect back to the List page of the resource:
Customizing the save notification
When the record is successfully updated, a notification is dispatched to the user, which indicates the success of their action. To customize the title of this notification, define agetSavedNotificationTitle() method on the edit page class:
getSavedNotification() method on the edit page class:
null from the getSavedNotification() method on the edit page class:
Lifecycle hooks
Hooks may be used to execute code at various points within a page’s lifecycle, like before a form is saved. To set up a hook, create a protected method on the Edit page class with the name of the hook:beforeSave() method will be called before the data in the form is saved to the database.
There are several available hooks for the Edit pages:
Halting the saving process
At any time, you may call$this->halt() from inside a lifecycle hook or mutation method, which will halt the entire saving process:
cancel() the action instead of halting it:
Authorization
For authorization, Filament will observe any model policies that are registered in your app. Users may access the Edit page if theupdate() method of the model policy returns true.
They also have the ability to delete the record if the delete() method of the policy returns true.
Custom actions
“Actions” are buttons that are displayed on pages, which allow the user to run a Livewire method on the page or visit a URL. On resource pages, actions are usually in 2 places: in the top right of the page, and below the form. For example, you may add a new button action next to “Delete” on the Edit page that runs theimpersonate() Livewire method:
Custom views
For further customization opportunities, you can override the static$view property on the page class to a custom view in your app: