How to send a success notification after a custom action ?

Hello, i'm trying to send a notification after a custom action but no notification get fired.

My code :
Action::make('reset_user_password')
->action(
fn (User $record) => $this->resetPassword($record)
)
->requiresConfirmation()
->successNotification(
Notification::make()
->success()
->title('User password reset!'),
);
Solution
But sending the notification directly in the action works!
Was this page helpful?