Пример #1
0
 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function show($id)
 {
     $paciente = \App\Paciente::findOrNew($id);
     return View('paciente.show', ['paciente' => $paciente]);
 }