*/ public function toArray(): array { return [ 'id' => $this->id, 'name' => $this->name, 'slug' => $this->slug, ]; } public static function fromModel(ProductCategory $category): self { return new self( id: $category->id, name: $category->name, slug: $category->slug, ); } }