Cviebrock\EloquentTaggable\Models\Tag::setNameAttribute PHP Method

setNameAttribute() public method

Set the name attribute on the model.
public setNameAttribute ( string $value )
$value string
    public function setNameAttribute($value)
    {
        $value = trim($value);
        $this->attributes['name'] = $value;
        $this->attributes['normalized'] = app(TagService::class)->normalize($value);
    }