morphMany(Comment::class, 'commentable'); } public function getLatestCommentsAttribute() { return $this->comments()->latest()->limit(5)->get(); } public function getCommentsCountAttribute() { return $this->comments()->count(); } }