*/ public function toArray(Request $request): array { /** * @var $this Quantity */ return [ 'id' => $this->id, 'product_name' => $this->product->name, 'count' => $this->count, 'data'=> json_decode($this->data), 'meta' => $this->meta, 'price'=> $this->price, 'image' => $this->product->getMedia()[$this->image]->getUrl('product-image'), ]; } }