*/ public function toArray(Request $request): array { $variant = $this->variants->sole(); return [ 'id' => $this->id, 'title' => $this->nombre, 'description' => $this->descripcion, 'event_date_ids' => $variant->selectedEventDates()->pluck('id')->values(), 'stock' => $variant->inventory->real_stock, 'price' => $this->precio, ]; } }