Guest User

Untitled

a guest
Jan 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public function show(Post $post)
  2. {
  3.  
  4. $notification_for_user = auth()->user()->unreadNotifications()->where("data['post_id']", $post->id)->first()->update(['read_at' => now()]);
  5.  
  6. return view('post.show', compact('post'));
  7. }
  8.  
  9. {"post_id":8,"title":"Example Post...}
Add Comment
Please, Sign In to add comment