avatar); } public function isAuthorOf($model) { return $this->id == $model->user_id; } public function replies() { return $this->hasMany(Reply::class, 'user_id'); } public function topics() { return $this->hasMany(Topic::class); } public function notify($instance) { if ($this->id == Auth::id()) { return; } $this->increment('notification_count'); $this->laravelNotify($instance); } public function markAsRead() { $this->notification_count = 0; $this->save(); $this->unreadNotifications->markAsRead(); } }