*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'codigo' => $this->codigo, 'nombre' => $this->nombre, 'is_required' => $this->is_required, 'metadata_schema' => $this->metadata_schema, 'type' => $this->type?->value ?? $this->type, 'options' => AttributeOptionResource::collection($this->whenLoaded('options')), ]; } }