Flarum\Core\Discussion::comments PHP Method

comments() public method

Define the relationship with the discussion's publicly-visible comments.
public comments ( ) : Illuminate\Database\Eloquent\Relations\HasMany
return Illuminate\Database\Eloquent\Relations\HasMany
    public function comments()
    {
        return $this->postsVisibleTo(new Guest())->where('type', 'comment');
    }