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

BALANCE DE CREDITOS Y ABONOS: {{$estudiante->nombre}}

CREDITOS

@foreach ($credito as $a) @endforeach
AUTORIZO MEDIO VALOR FECHA DE PAGO DESCRIPCION FECHA DE CREACION
{{$a->autorizo}} {{$a->medio}} Q. {{number_format($a->valor, 2)}} {{$a->f_pago}} {{$a->descripcion}} {{$a->created_at}}

ABONOS

@foreach ($abonos as $a) @endforeach
VALOR TIPO DESCRIPCION FECHA
Q. {{number_format($a->valor, 2)}} {{$a->tipo}} {{$a->descripcion}} {{$a->created_at}}

TOTAL EN DEUDA: Q. {{number_format($tc - $ta, 2)}}

@endsection