I have a Subscriber Model
// Subscriber Model id user_id subscribable_id subscribable_type public function user() { return $this->belongsTo(\'App\\U
Ok, i got a better solution
// Subscriber Model use Notifiable; public function receivesBroadcastNotificationsOn() { return 'App.User.' . $this->user_id; } // Send Notification Notification::send($post->subscribers, new TestNotification($post));