Commit 14e4bf53f06ef90dcb82f459316a7f7ba9cbfe71
1 parent
19503adc
menis
Showing
1 changed file
with
1 additions
and
1 deletions
app/controllers/RegistrarAsistencia.php
... | ... | @@ -56,7 +56,7 @@ class RegistrarAsistencia extends \BaseController { |
56 | 56 | //obtengo los registros que cumplen con todos los filtros |
57 | 57 | $asistentes=$asistentes->get(); |
58 | 58 | //calculo el total de confirmados |
59 | - $total_confirmados=-GraduacionUsoTic::where('asistio','=',true)->count(); | |
59 | + $total_confirmados=GraduacionUsoTic::where('asistio','=',true)->count(); | |
60 | 60 | //renderizo la vista |
61 | 61 | return View::make('asistencia') |
62 | 62 | ->with('asistentes',$asistentes) | ... | ... |