*/ public function toArray(Request $request): array { return [ 'code' => $this->resource->value, 'allow_modify' => $this->resource->allowsModification(), 'allow_delete' => $this->resource->allowsRemoval(), 'allow_update_quantity' => $this->resource->allowsQuantityChanges(), 'allow_update_variant' => $this->resource->allowsVariantChanges(), ]; } }