*/ public function toArray($request): array { return [ 'id' => $this->id, 'title' => $this->title, 'content' => $this->content, 'shortTitle' => $this->abbreviation, 'slug' => $this->slug, 'workers' => PersonFacultyPreviewResource::collection($this->workers), 'departments' => DepartmentPreviewResource::collection($this->departments) ]; } }