@extends('layouts.app') @section('content')
ABONOS DE CLIENTES
@foreach ($data as $a) @endforeach
#
CLIENTE
DESCRIPCION
TIPO
TOTAL
FECHA DE REGISTRO
{{$a->id}}
{{$a->cliente->nombre}}
{{$a->descripcion}}
{{$a->tipo}}
Q. {{number_format($a->total, 2)}}
{{$a->created_at}}
TOTAL EN ABONOS: Q. {{number_format($t, 2)}}
@endsection