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

Ventas realizadas

@foreach($credit as $cred) @endforeach
Nombres Credito Barrio Hora Tasa Cuotas Valor neto
{{$cred->name}} {{$cred->last_name}} {{$cred->credit_id}} {{$cred->province}} {{$cred->created_at}} {{$cred->utility}} {{$cred->payment_number}} {{($cred->amount_neto)}}

Total: {{$total_credit}}

Pagos Recibidos

@foreach($summary as $sum) @endforeach
Nombres Fecha Credito Cuota Saldo Ăšltima cuota
{{$sum->name}} {{$sum->last_name}} {{$sum->created_at}} {{$sum->id_credit}} {{$sum->number_index}} {{($sum->total_payment)}} {{$sum->amount}}

Total: {{$total_summary}}

Gastos

@foreach($bills as $bill) @endforeach
Gasto Detalle Valor neto
{{$bill->type}} {{$bill->description}} {{$bill->amount}}

Total: {{$total_bills}}

@endsection