Eloquent\Dialect\Json::setAttribute PHP Метод

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

Set a given attribute on the known JSON elements.
public setAttribute ( string $key, mixed $value )
$key string
$value mixed
    public function setAttribute($key, $value)
    {
        if (array_key_exists($key, $this->jsonAttributes) !== false && !parent::hasSetMutator($key)) {
            $this->setJsonAttribute($this->jsonAttributes[$key], $key, $value);
            return;
        }
        parent::setAttribute($key, $value);
    }