*/ public function toArray(Request $request): array { return [ 'id' => $this->resource->id, 'parent_id' => $this->resource->parent_id, 'name' => $this->resource->name, 'slug' => $this->resource->slug, 'description' => $this->resource->description, 'products_count' => $this->when(isset($this->resource->products_count), (int) $this->resource->products_count), ]; } }