diff --git a/app/Notifications/BroadcastNotification.php b/app/Notifications/BroadcastNotification.php index 777aaa0..b52de30 100644 --- a/app/Notifications/BroadcastNotification.php +++ b/app/Notifications/BroadcastNotification.php @@ -4,11 +4,14 @@ use Filament\Notifications\Notification as FilamentNotification; use Illuminate\Bus\Queueable; +use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Notification; -class BroadcastNotification extends Notification +use Illuminate\Queue\SerializesModels; + +class BroadcastNotification extends Notification implements ShouldQueue { - use Queueable; + use Queueable, SerializesModels; public function __construct( protected array $payload