after callback not fired for EditAction
After submitting the form, I expect to see a dump and die. But it's not being called.
It's a table in a relation manager
Am i missing something?
It's a table in a relation manager
Am i missing something?
$table ->actions([
Tables\Actions\EditAction::make()
->after(function(){
dd('after');
}),
Tables\Actions\DeleteAction::make(),
])