コード例 #1
0
ファイル: User.php プロジェクト: christiancable/nexus5ive
 public function markCommentsAsRead()
 {
     Comment::where('user_id', $this->id)->update(['read' => true]);
 }