hasOne(ProductDescription::class)->where('locale', 'zh_cn'); } public function descriptions() { return $this->hasMany(ProductDescription::class); } public function skus() { return $this->hasMany(ProductSku::class); } public function getVariablesDecodedAttribute() { return json_decode($this->variables, true); } }