Ejemplo n.º 1
0
 public function updateLikes()
 {
     $this->likes = NoteLike::where('note_id', $this->id)->count();
     $this->save();
 }
Ejemplo n.º 2
0
 public static function exists($userId, $noteId)
 {
     return NoteLike::where('user_id', $userId)->where('note_id', $noteId)->count() > 0;
 }