@extends('layouts.admin') @section('page-title') {{ __('Customer Statement') }} @endsection @push('script-page') @endpush @section('breadcrumb')
| {{ 'Account Summary' }} | |
|---|---|
| {{ 'Invoice Amount' }} | {{ \Auth::user()->priceFormat($totalInvoiced) }} |
| {{ 'Amount Paid' }} | {{ \Auth::user()->priceFormat($totalPaid) }} |
| {{ 'Balance Due' }} | {{ \Auth::user()->priceFormat($balanceDue) }} |
| {{ __('Date') }} | {{ __('Invoice') }} | {{ __('Payment Type') }} | {{ __('Invoice Total') }} | {{ __('Paid Amount') }} | |
|---|---|---|---|---|---|
| {{ \Auth::user()->dateFormat($payment->date) }} | {{ \Auth::user()->invoiceNumberFormat($payment->id) }} | {{ $payment->payment_type }} | @if(isset($invoiceTotals[$i])) {{ \Auth::user()->priceFormat($invoiceTotals[$i]) }} @else {{ __('N/A') }} @endif | {{ \Auth::user()->priceFormat($payment->amount) }} | |
|
{{ __('No Data Found') }} |
|||||
| {{ __('TOTAL :') }} | @foreach ($invoice_payment as $key => $payment) @php $total += $payment->amount; // $total1 += $invoice_total->getTotal(); @endphp @endforeach | {{ \Auth::user()->priceFormat($totalInvoiced) }} | {{ \Auth::user()->priceFormat($total) }} | ||