/**
  * Update the specified resource in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id)
 {
     if (Auth::check()) {
         $data["inside_url"] = Config::get('app.inside_url');
         $data["user"] = Session::get('user');
         // Verifico si el usuario es un Webmaster
         if ($data["user"]->idrol == 1 || $data["user"]->idrol == 2 || $data["user"]->idrol == 3 || $data["user"]->idrol == 4) {
             // Validate the info, create rules for the inputs
             $rules = array('nombre' => 'required', 'departamento' => 'required', 'servicio_clinico' => 'required', 'responsable' => 'required', 'numero_sesion' => 'required');
             // Run the validation rules on the inputs from the form
             $validator = Validator::make(Input::all(), $rules);
             // If the validator fails, redirect back to the form
             if ($validator->fails()) {
                 return Redirect::to('programacion_docente/edit/' . $id)->withErrors($validator)->withInput(Input::all());
             } else {
                 $programacion_docente = ProgramacionDocente::find($id);
                 $programacion_docente->nombre = Input::get('nombre');
                 $programacion_docente->id_departamento = Input::get('departamento');
                 $programacion_docente->id_servicio_clinico = Input::get('servicio_clinico');
                 $programacion_docente->id_sesion = Input::get('numero_sesion');
                 $programacion_docente->id_responsable = Input::get('responsable');
                 $sesion = Sesion::find(Input::get('numero_sesion'));
                 $programacion_docente->fecha = $sesion->fecha;
                 $programacion_docente->save();
                 Session::flash('message', 'Se editó correctamente la programación de docente.');
                 return Redirect::to('programacion_docente/show/' . $id);
             }
         } else {
             return View::make('error/error', $data);
         }
     } else {
         return View::make('error/error', $data);
     }
 }
 public function update_fecha_sesion()
 {
     if (Auth::check()) {
         $data["inside_url"] = Config::get('app.inside_url');
         $data["user"] = Session::get('user');
         $dimensiones = Dimension::all()->count();
         // Verifico si el usuario es un Webmaster
         if ($data["user"]->idrol == 1 || $data["user"]->idrol == 2 || $data["user"]->idrol == 3 || $data["user"]->idrol == 4) {
             // Validate the info, create rules for the inputs
             $id_sesion = Input::get('id_sesion');
             $rules = array('fecha' => 'required', 'hora_inicio' => 'required');
             // Run the validation rules on the inputs from the form
             $validator = Validator::make(Input::all(), $rules);
             // If the validator fails, redirect back to the form
             if ($validator->fails()) {
                 return Redirect::to('capacitacion/edit_fecha_sesion/' . $id_sesion)->withErrors($validator)->withInput(Input::all());
             } else {
                 $sesion = Sesion::find($id_sesion);
                 $capacitacion = Capacitacion::find($sesion->id_capacitacion);
                 $fecha_sesion = date('Y-m-d', strtotime(Input::get('fecha')));
                 if ($fecha_sesion <= $capacitacion->fecha_fin && $fecha_sesion >= $capacitacion->fecha_ini) {
                     $sesion->fecha = date('Y-m-d H:i:s', strtotime($fecha_sesion . " " . Input::get('hora_inicio')));
                     $sesion->save();
                 } else {
                     Session::flash('error', 'La fecha de la sesión debe estar comprendido entre las fechas de inicio y fin de la capacitación.');
                     return Redirect::to('capacitacion/show_fecha_sesion/' . $id_sesion);
                 }
                 Session::flash('message', 'Se edito correctamente la fecha de la sesión.');
                 return Redirect::to('capacitacion/show_fecha_sesion/' . $id_sesion);
             }
         } else {
             return View::make('error/error', $data);
         }
     } else {
         return View::make('error/error', $data);
     }
 }