after callback not fired for EditAction

After submitting the form, I expect to see a dump and die. But it's not being called.

$table ->actions([
                Tables\Actions\EditAction::make()
                ->after(function(){
                   dd('after'); 
                }),
                Tables\Actions\DeleteAction::make(),
            ])


It's a table in a relation manager

Am i missing something?
Was this page helpful?