relation manager customizing data before saving not working!

trying to modify data before saving a new record in the relation manager but normal lifecycle hook are not being called.

->headerActions([
Tables\Actions\CreateAction::make()
->mutateFormDataUsing(function (array $data) {
dd($data);
}),
])
Solution
can you try adding in emptystateActions.
Was this page helpful?