public function loadChild(Location $location, $id, NCDBHelper $helper)
 {
     $child = $this->child->getChildByRegistrationId($id);
     $child['age'] = $helper->calculateAge($child->brth_birth_date_ad);
     $child_address = $location->getFullAddress($child->brth_birth_address);
     return view('vaccination.vaccine_program.index')->with('child', $child)->with('address', $child_address);
 }