Laravel notification: Check if the notification is sent

131 Views Asked by At

Am Working on laravel 9. I send notification using the notifiable trait and I wish to make some action only if the notification is.

How can I perform this!

thanks,

1

There are 1 best solutions below

0
Afzaal Hussain On

I think You can check using Notification::failure()

if (Notification::failure() > 0){
  //your required function;
}