morphMany(CommentsConfig::getCommentModel(), 'commentable'); } public function topLevelComments(): MorphMany { return $this->comments()->whereNull('parent_id'); } public function commentCount(): int { return $this->comments()->count(); } }