/**
  * Display a listing of the resource.
  * GET /alumnos
  *
  * @return Response
  */
 public function index()
 {
     $alumno = Alumno::all();
     return View::make('alumnos.index', compact('alumno'));
 }