/**
  * Update the specified notificacione in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id)
 {
     $notificacion = Notificacion::findOrFail($id);
     $notificacion->update($data);
     return Response::json($notificacion, 200);
 }