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