@extends('layouts.admin') @section('page-title') {{__('Customer Statement')}} @endsection @push('script-page') @endpush @section('breadcrumb')
| {{__('Date')}} | {{__('Invoice')}} | {{__('Payment Type')}} | {{__('Amount')}} | ||
|---|---|---|---|---|---|
| {{\Auth::user()->dateFormat($payment->date)}} | {{\Auth::user()->invoiceNumberFormat($payment->invoice_id)}} | {{$payment->payment_type}} | {{\Auth::user()->priceFormat(($payment->amount))}} | ||
{{__('No Data Found')}} |
|||||
| {{__('TOTAL :')}} | @foreach($invoice_payment as $key=>$payment) @php $total += $payment->amount; @endphp @endforeach | {{\Auth::user()->priceFormat($total)}} | |||