DvsGlobalField::getValueAttribute PHP Метод

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

Accessor on this model to get value for the latestVersion of this field
public getValueAttribute ( ) : FieldValue
Результат FieldValue
    public function getValueAttribute()
    {
        $json = $this->json_value ?: '{}';
        $this->_value = $this->_value ?: new LiveFieldValue($json, $this->id, 'global');
        return $this->_value;
    }