Commit 2b70aaf6dbadcdf3a83424171fbc6cf7aebacb81
1 parent
e9e761fa
get
Showing
1 changed file
with
2 additions
and
1 deletions
app/controllers/RegistrarAsistencia.php
... | ... | @@ -67,7 +67,8 @@ class RegistrarAsistencia extends \BaseController { |
67 | 67 | $asistentes = GraduacionUsoTic::where('asistio','=',true) |
68 | 68 | ->orderBy('diplomas','asc') |
69 | 69 | ->orderBy('cursos','asc') |
70 | - ->orderBy('apellidos','asc'); | |
70 | + ->orderBy('apellidos','asc') | |
71 | + ->get(); | |
71 | 72 | |
72 | 73 | return View::make('registrados') |
73 | 74 | ->with('asistentes',$asistentes); | ... | ... |