*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'title' => $this->title, 'content' => $this->content, 'category' => $this->category->title, 'directionAdditionalEducation' => new DirectionAdditionalEducationResource($this->category->direction), 'target_group' => $this->target_group, 'price' => $this->price, 'qualification' => $this->qualification, 'learning_time' => $this->learning_time, 'form_education' => $this->form_education->getLabel(), ]; } }