*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'name' => $this->name, 'slug' => $this->slug, 'academicTitle' => $this->userDetail->academicTitle, 'contactPhone' => $this->pivot->service_phone, 'contactEmail' => $this->pivot->service_email, 'cabinet' => $this->pivot->cabinet, 'photo' => $this->userDetail->photo, 'position' => $this->pivot->teaching_position, ]; } }