@extends('master_header')
@section('content')
@include('includes.header-topbar')
@include('md.sidebar-menu')
Property Payment Details
- Sales
- Property Payment Details
@foreach($invoices as $invoice)
| Payments |
Date |
Total Amount |
Action |
@foreach($payments as $payment)
| {{$payment->name}} |
{{$payment->date}} |
{{number_format($payment->amount_total)}}
|
|
@endforeach
|
| Amount Paid : |
₦ {{number_format($amount_paid)}} |
| Amount Left : |
₦ {{number_format($total_amount - $amount_paid)}} |
|
@endforeach
@include('includes.footer')
@endsection