locale = $locale; $this->type = $type; } public function transform($category) { return $this->type == 'trading' ? [ 'id' => $category->id, 'title' => $category->getTranslations('title', [$this->locale])[$this->locale] ?? '-', ] : [ 'id' => $category->id, 'title' => $category->getTranslations('title', [$this->locale])[$this->locale] ?? '-', 'type' => $category->type, ]; } }