@extends('layouts.reportes') @section('styles') @endsection @section('content')

{{$name}}

@php $deuda_cole = 0; $deuda_bus = 0; $deuda_bolsa = 0; $deuda_uniforme = 0; $deuda_insc = 0; $deuda_acti = 0; $deuda_ext = 0; $deuda_total = 0; @endphp @foreach ($estu as $estudiante) @php $cole = getDeudaToAboo('COLEGIATURA', $estudiante->id); $bus = getDeudaToAboo('BUS', $estudiante->id); $bolsa = getDeudaToAboo('BOLSA DE UTILES', $estudiante->id); $uniforme = getDeudaToAboo('UNIFORME', $estudiante->id); $insc = getDeudaToAboo('INSCRIPCION', $estudiante->id); $acti = getDeudaToAboo('ACTIVIDADES', $estudiante->id); $ext = getDeudaToAboo('DEUDA EXTRA', $estudiante->id); $total = $cole + $bus +$bolsa +$uniforme + $insc +$acti +$ext; $deuda_cole += $cole; $deuda_bus += $bus; $deuda_bolsa += $bolsa; $deuda_uniforme += $uniforme; $deuda_insc += $insc; $deuda_acti += $acti; $deuda_ext += $ext; $deuda_total += $total; $t_deuda = 0; @endphp @if ($t_deuda >= $minimo && $t_deuda <= $maximo) @endif @endforeach
NOMBRE GRADO INSCRIPCION BOLSA UNIFORME BUS COLEGIATURA DEDUDAS EXTRAS ACTIVIDADES TOTAL
{{ $estudiante->nombre }} {{ $estudiante->grado->codigo }} @if ( $insc > 0) Q. {{ number_format($insc, 2) }}
@endif
@if ( $bolsa > 0 ) Q. {{ number_format($bolsa, 2) }}
@endif
@if ( $uniforme > 0) Q. {{ number_format($uniforme, 2) }}
@endif
@if ( $bus > 0) Q. {{ number_format($bus, 2) }}
@endif
@if ( $cole > 0) Q. {{ number_format($cole, 2) }}
@endif
@if ( $ext > 0) Q. {{ number_format($ext, 2) }}
@endif
@if ( $acti > 0) Q. {{ number_format($acti, 2) }}
@endif
Inscripcion
Q. {{number_format($deuda_insc, 2)}}
Bolsa
Q. {{number_format($deuda_bolsa, 2)}}
Uniforme
Q. {{number_format($deuda_uniforme, 2)}}
Bus
Q. {{number_format($deuda_bus, 2)}}
Colegiatura
Q. {{number_format($deuda_cole, 2)}}
Deuda Extra
Q. {{number_format($deuda_ext, 2)}}
Actividades
Q. {{number_format($deuda_acti, 2)}}
Q. {{number_format($deuda_total, 2)}}
@endsection