belongsToMany(Category::class); } public function getDatazAttribute() { $result = []; foreach (json_decode($this->options) as $item) { $result[$item->title] = $item->value; } return $result; } public function getOptionzAttribute() { return json_decode($this->options); } }