Cviebrock\EloquentTaggable\Taggable::getTagListNormalizedAttribute PHP Method

getTagListNormalizedAttribute() public method

Get all normalized tags of a Model as a string in which the tags are delimited by the character defined in config('taggable.delimiters').
    public function getTagListNormalizedAttribute()
    {
        return app(TagService::class)->makeTagList($this, 'normalized');
    }