*/ public function toArray(Request $request): array { return [ 'id' => $this->whenHas('id'), 'title' => $this->whenHas('title'), 'starts_at' => $this->starts_at?->toISOString(), 'ends_at' => $this->ends_at?->toISOString(), 'products' => ProductIndexResource::collection($this->whenLoaded('products')), ]; } }