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

ABONOS / CREDITOS DE CLIENTE {{$cli->nombre}}

DE {{$inicio}} A {{$fin}}

CREDITOS

@php $t_deuda = 0; @endphp @foreach ($deudas as $deu) @php $t_deuda += $deu->total; @endphp @endforeach
# DESCRIPCION FECHA DE PAGO FECAH DE REGISTRO TOTAL
{{$deu->id}} {{$deu->descripcion}} {{$deu->fecha_pago}} {{$deu->created_at}} Q. {{number_format($deu->total, 2)}}

ABONOS

@php $t_abono = 0; @endphp @foreach ($abonos as $deu) @php $t_abono += $deu->total; @endphp @endforeach
# FECHA DE REGISTRO DESCRIPCION TOTAL
{{$deu->id}} {{$deu->created_at}} {{$deu->descripcion}} Q. {{number_format($deu->total, 2)}}

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

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

@endsection