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

SERVICIOS ADQUIRIDOS

COSTO DE INSCRIPCION: Q. {{ number_format($deuda_inscripcion->deuda, 2)}}

COSTO DE COLEGIATURA MENSUAL: Q. {{ number_format($estudiante->colegiatura, 2)}}


DATOS DE COLEGIATURA

Total: Q. {{number_format($total_colegiatura, 2)}}


BUS

@if ($bus_asignado)

FECHA DE ACTUALIZACION {{$bus_asignado->updated_at}}

@if ($bus_asignado->estado1 === 'ASIGNADO') ENERO
Costo: {{number_format($deuda_bus->mes1, 2)}}


@endif @if ($bus_asignado->estado2 === 'ASIGNADO') FEBRERO
Costo: {{number_format($deuda_bus->mes2, 2)}}

@endif @if ($bus_asignado->estado3 === 'ASIGNADO') MARZO
Costo: {{number_format($deuda_bus->mes3, 2)}}

@endif @if ($bus_asignado->estado4 === 'ASIGNADO') ABRIL
Costo: {{number_format($deuda_bus->mes4, 2)}}

@endif @if ($bus_asignado->estado5 === 'ASIGNADO') MAYO
Costo: {{number_format($deuda_bus->mes5, 2)}}

@endif @if ($bus_asignado->estado6 === 'ASIGNADO') JUNIO
Costo: {{number_format($deuda_bus->mes6, 2)}}

@endif @if ($bus_asignado->estado7 === 'ASIGNADO') JULIO
Costo: {{number_format($deuda_bus->mes7, 2)}}

@endif @if ($bus_asignado->estado8 === 'ASIGNADO') AGOSTO
Costo: {{number_format($deuda_bus->mes8, 2)}}

@endif @if ($bus_asignado->estado9 === 'ASIGNADO') SEPTIEMBRE
Costo: {{number_format($deuda_bus->mes9, 2)}}

@endif @if ($bus_asignado->estado10 === 'ASIGNADO') OCTUBRE
Costo: {{number_format($deuda_bus->mes10, 2)}}

@endif @if ($bus_asignado->estado11 === 'ASIGNADO') NOVIEMBRE
Costo: {{number_format($deuda_bus->mes11, 2)}}

@endif @if ($bus_asignado->estado12 === 'ASIGNADO') DICIEMBRE
Costo: {{number_format($deuda_bus->mes12, 2)}}

@endif

PAGO POR MES {{number_format($bus_asignado->pago_mensual, 2)}}

NOTA: {{$bus_asignado->descripcion}}

@else @endif

BOLSA DE UTILES

@foreach ($venta_bolsas as $venta) @endforeach
ARTICULO DECRIPCION CANTIDAD DESCUENTO TOTAL
{{$venta->nombre}} @php echo $venta->decripcion; @endphp {{$venta->cantidad}} / UNIDAD Q. {{number_format($venta->descuento, 2)}} Q. {{number_format($venta->total, 2)}}

Total: Q. {{number_format($total_bolsa, 2)}}


UNIFORMES

@foreach ($venta_uniformes as $uni ) @endforeach
NOMBRE TALLA DESCRIPCION CANTIDAD PRECIO DESCUENTO TOTAL
{{$uni->nombre}} {{$uni->talla}} {{$uni->description}} {{$uni->cantidad}} Q. {{number_format($uni->p_venta, 2)}} Q. {{number_format($uni->descuento, 2)}} Q. {{number_format($uni->total, 2)}}

Total: Q. {{number_format($total_uniforme, 2)}}


ACTIVIDADES

@foreach ($venta_actividades as $activi ) @endforeach
ACTIVIDAD DESCRIPCION DESCRIPCION DEL ALUMNO FECHA DE REALIZACION TOTAL
{{$activi->nombre}} @php echo $activi->descripcion; @endphp {{$activi->description}} {{$activi->fecha}} Q. {{number_format($activi->total, 2)}}

Total: Q. {{number_format($total_actividad, 2)}}


DEUDAS EXTRAS

@forelse ($deudas_extras as $extra) @empty @endforelse

Total: Q. {{number_format($total_ext, 2)}}

ABONOS REALIZADOS

@php $abono =0; @endphp @for ($i = 0; $i < count($abonos[0]); $i++) @php $abono += $abonos[0][$i]->valor; @endphp @endfor
TIPO DE PAGO ABONO DESCRICPION FECHA DE PAGO
{{$abonos[0][$i]->tipo}} Q. {{number_format($abonos[0][$i]->valor, 2)}} {{$abonos[0][$i]->descripcion}} {{$abonos[0][$i]->created_at}}
@method('DELETE') @csrf

Saldo: Q. {{number_format( $deuda_inscripcion->deuda - $abono ,2)}}


@php $abono = 0; @endphp @for ($i = 0; $i < count($abonos[1]); $i++) @php $abono += $abonos[1][$i]->valor; @endphp @endfor
TIPO DE PAGO ABONO DESCRICPION FECHA DE PAGO
{{$abonos[1][$i]->tipo}} Q. {{number_format($abonos[1][$i]->valor, 2)}} {{$abonos[1][$i]->descripcion}} {{$abonos[1][$i]->created_at}}
@method('DELETE') @csrf

Saldo: Q. {{number_format( $total_colegiatura - $abono ,2)}}


@php $abono = 0; @endphp @for ($i = 0; $i < count($abonos[2]); $i++) @endfor
TIPO DE PAGO ABONO DESCRICPION FECHA DE PAGO
{{$abonos[2][$i]->tipo}} Q. {{number_format($abonos[2][$i]->valor, 2)}} {{$abonos[2][$i]->descripcion}} {{$abonos[2][$i]->created_at}}
@method('DELETE') @csrf

Saldo: Q. {{number_format( $total_bus - $abono ,2)}}


@php $abono = 0; @endphp @for ($i = 0; $i < count($abonos[3]); $i++) @php $abono += $abonos[3][$i]->valor; @endphp @endfor
TIPO DE PAGO ABONO DESCRICPION FECHA DE PAGO
{{$abonos[3][$i]->tipo}} Q. {{number_format($abonos[3][$i]->valor, 2)}} {{$abonos[3][$i]->descripcion}} {{$abonos[3][$i]->created_at}}
@method('DELETE') @csrf

Saldo: Q. {{number_format( $total_bolsa - $abono ,2)}}


@php $abono = 0; @endphp @for ($i = 0; $i < count($abonos[4]); $i++) @php $abono += $abonos[4][$i]->valor; @endphp @endfor
TIPO DE PAGO ABONO DESCRICPION FECHA DE PAGO
{{$abonos[4][$i]->tipo}} Q. {{number_format($abonos[4][$i]->valor, 2)}} {{$abonos[4][$i]->descripcion}} {{$abonos[4][$i]->created_at}}
@method('DELETE') @csrf

Saldo: Q. {{number_format( $total_uniforme - $abono ,2)}}


@php $abono = 0; @endphp @for ($i = 0; $i < count($abonos[5]); $i++) @php $abono += $abonos[5][$i]->valor; @endphp @endfor
TIPO DE PAGO ABONO DESCRICPION FECHA DE PAGO
{{$abonos[5][$i]->tipo}} Q. {{number_format($abonos[5][$i]->valor, 2)}} {{$abonos[5][$i]->descripcion}} {{$abonos[5][$i]->created_at}}
@method('DELETE') @csrf

Saldo: Q. {{number_format( $total_actividad - $abono ,2)}}


@php $abono = 0; @endphp @for ($i = 0; $i < count($abonos[6]); $i++) @php $abono += $abonos[6][$i]->valor; @endphp @endfor
TIPO DE PAGO ABONO DESCRICPION FECHA DE PAGO
{{$abonos[6][$i]->tipo}} Q. {{number_format($abonos[6][$i]->valor, 2)}} {{$abonos[6][$i]->descripcion}} {{$abonos[6][$i]->created_at}}
@method('DELETE') @csrf

Saldo: Q. {{number_format( $total_ext - $abono ,2)}}


@foreach ($descuentos as $d) @endforeach
# DESCRIPCION VALOR FECHA
{{$d->id}} {{number_format($d->valor, 2)}} {{$d->created_at}}
@endsection