/**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function getAsistentes()
 {
     $asistentes = Asistente::with('preUachsR.pregradoR.postulanteR')->get();
     $arra = array('data' => $asistentes->toArray());
     return json_encode($arra);
 }