*/ public function toArray(Request $request) { return [ 'id' => $this->id, 'name' => $this->name, 'email' => $this->email, 'phone' => $this->phone, 'dob' => $this->dob, 'role' => $this->role, 'doctorProfile' => DoctorProfileResource::make($this->whenLoaded('doctorProfile')), 'submission' => SubmissionResource::collection($this->whenLoaded('submission')), ]; } }