*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'title' => $this->nombre, 'description' => $this->descripcion, 'variants' => $this->variants ->whereNull('replaced_by_variant_id') ->values() ->toArray(), 'price' => $this->precio, ]; } }