*/ public function toArray($request): array { return [ 'id' => $this->id, 'title' => $this->title, 'content' => $this->content, 'faculty' => $this->faculty, 'slug' => $this->slug, 'workers' => PersonDepartmentPreviewResource::collection($this->workers), 'teachers' => PersonDepartmentTeachPreviewResource::collection($this->teachers), ]; } }