Customizing relation manager actions

I need to customize create action behavior but can not find anything in the documentation, i found this in RelationManager class and tried using it but it did not work $this->configureCreateAction($action);
1 Reply
LeandroFerreira
LeandroFerreira6mo ago
You can use ->action() in the RelationManager class
Tables\Actions\CreateAction::make()
->action(function (array $data) {
//...
})
Tables\Actions\CreateAction::make()
->action(function (array $data) {
//...
})