*/ public function toArray(Request $request): array { return [ 'id'=> $this->id, 'slug' => $this->slug, 'name' => $this->name, 'price' => $this->price, 'image' => $this->imgUrl(), 'meta' => $this->fullMeta(), 'max' => $this->stock_quantity, 'qz' => QunatityCollection::collection($this->quantities), ]; } }