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

REPORTE DE {{$titulo}}

ABONOS

@foreach ($data as $d) @endforeach
REGISTRO FECHA ESTUDIANTE TIPO VALOR DESCRIPCION BANCO BOLETA USUARIO
{{$d->factura_id}} {{$d->created_at}} {{$d->estudiante->nombre}} {{$d->tipo}} Q. {{number_format($d->valor, 2)}} {{$d->banco}} {{$d->boleta}} {{$d->user->name}}

Q. {{number_format($total, 2)}}

@if ($colegiatura_vis)

COLEGIATURA

@foreach ($deuda as $d) @if (isset($d->estudiante->nombre)) @endif @endforeach
ESTUDIANTE VALOR
{{$d->estudiante->nombre}} ENERO: 0.00 | FEBRERO: 0.00 | MARZO: 0.00 | ABRIL: 0.00 | MAYO: 0.00 | JUNIO: 0.00 | JULIO: 0.00 | AGOSTO: 0.00 | SEPTIEMBRE: 0.00 | OCTUBRE: 0.00

TOTAL ASIGNADO = Q. {{number_format($totald, 2)}}

@endif @if ($bolsadeutiles_vis)

BOLS DE UTILES

@foreach ($deuda as $d) @if (isset($d->estudiante->nombre)) @endif @endforeach
ESTUDIANTE BOLSA VALOR
{{$d->estudiante->nombre}} {{$d->bolsa->nombre}} Q. {{number_format($d->total, 2)}}

TOTAL ASIGNADO = Q. {{number_format($totald, 2)}}

@endif @if ($uniforme_vis)

UNIFORMES

@foreach ($deuda as $d) @if (isset($d->estudiante->nombre)) @endif @endforeach
ESTUDIANTE UNIFORME VALOR
{{$d->estudiante->nombre}} {{$d->uniforme->nombre}} Q. {{number_format($d->total, 2)}}

TOTAL ASIGNADO = Q. {{number_format($totald, 2)}}

@endif @if ($inscripcion_vis)

INSCRIPCION

@foreach ($deuda as $d) @if (isset($d->estudiante->nombre)) @endif @endforeach
ESTUDIANTE VALOR
{{$d->estudiante->nombre}} Q. {{number_format($d->deuda, 2)}}

TOTAL ASIGNADO = Q. {{number_format($totald, 2)}}

@endif @if ($actividades_vis)

INSCRIPCION

@foreach ($deuda as $d) @if (isset($d->estudiante->nombre)) @endif @endforeach
ESTUDIANTE ACTIVIDAD VALOR
{{$d->estudiante->nombre}} {{$d->actividad->nombre}} Q. {{number_format($d->total, 2)}}

TOTAL ASIGNADO = Q. {{number_format($totald, 2)}}

@endif @if ($deudaextra_vis)

DEUDAS EXTRAS

@foreach ($deuda as $d) @if (isset($d->estudiante->nombre)) @endif @endforeach
ESTUDIANTE DESCRIPCION VALOR
{{$d->estudiante->nombre}} Q. {{number_format($d->valor, 2)}}

TOTAL ASIGNADO = Q. {{number_format($totald, 2)}}

@endif

TOTAL ASIGNADO = Q. {{number_format($totald, 2)}}

TOTAL ABONADO: Q. {{number_format($total, 2)}}

TOTAL POR COBRAR: Q. {{number_format($totald - $total, 2)}}

@endsection