Property Payment Details

@foreach($invoices as $invoice)
{{$invoice->invoice_origin}}
@foreach($payments as $payment) @endforeach
Payments Date Total Amount Action
{{$payment->name}} {{$payment->date}} {{number_format($payment->amount_total)}}
Amount Paid : ₦ {{number_format($amount_paid)}}
Amount Left : ₦ {{number_format($total_amount - $amount_paid)}}
@endforeach
@include('includes.footer')