Ejemplo n.º 1
0
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id)
 {
     $paciente = Pacientes::find($id);
     $paciente->update(Input::all());
     return Redirect::action('PacientesController@index')->with('message', 'Paciente modificado con éxito.');
 }