/**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id)
 {
     //
     $p = Patient::find($id);
     if ($p) {
         return Helpers::Show($p);
     } else {
         return Helpers::Mgs("Error {$id} Incorrecto");
     }
 }