Action after Create
I want to do some actions after create. But its not working. Am I doing it right?
protected function getCreateFormAction(): \Filament\Actions\Action
{
return parent::getCreateFormAction()->afterFormValidated(function() {
dd(1111111111111111111);
}); // TODO: Change the autogenerated stub
}
0 Replies