CREDITOS
# |
DESCRIPCION |
FECHA DE PAGO |
FECAH DE REGISTRO |
TOTAL |
|
@php
$t_deuda = 0;
@endphp
@foreach ($deudas as $deu)
@php
$t_deuda += $deu->total;
@endphp
{{$deu->id}} |
|
{{$deu->fecha_pago}} |
{{$deu->created_at}} |
Q. {{number_format($deu->total, 2)}} |
|
@endforeach
ABONOS
# |
FECHA DE REGISTRO |
DESCRIPCION |
TIPO |
TOTAL |
|
@php
$t_abono = 0;
@endphp
@foreach ($abonos as $deu)
@php
$t_abono += $deu->total;
@endphp
{{$deu->id}} |
{{$deu->created_at}} |
{{$deu->descripcion}} |
{{$deu->tipo}} |
Q. {{number_format($deu->total, 2)}} |
|
@endforeach
REPORTE DE HISTORIAL DE CREDITO
Actualizar Cliente
Cliente / {{$cliente->nombre}}
{{$cliente->nombre}}
Direccion: {{$cliente->direccion}}
Nit: {{$cliente->nit}}
Telefono: {{$cliente->telefono1}}
Telefono 2: {{$cliente->telefono2}}
Total Deuda: Q. {{number_format($t_deuda - $t_abono, 2)}}