Cviebrock\EloquentTaggable\Taggable::getTagListAttribute PHP Метод

getTagListAttribute() публичный Метод

Get all tags of a Model as a string in which the tags are delimited by the character defined in config('taggable.delimiters').
public getTagListAttribute ( ) : string
Результат string
    public function getTagListAttribute()
    {
        return app(TagService::class)->makeTagList($this);
    }