Я хотел сделать систему уведомлений в laravel, когда кто-то комментирует пост, владелец которого получает уведомление относительно комментария
* 1003-регулятора *
public function store(Request $request)
{
$comment = new Comment;
$comment->user_id = Auth::id();
$comment->post_id = $request->post_id;
$comment->body = $request->body;
$comment->save();
$c = Comment::where('id',$comment->id)->with('user')->first();
broadcast(new NewComment($c));//->toOthers();
$post = Post::find($request->post_id);
$user = User::find($post->user->id);
Notification::send($user, new CommentToPost($c));
return $c->toJson();
}