{{ $contact->first_name . ' ' . $contact->last_name }}
{{ $contact->address }}
{{ $contact->street_number . ', ' . $contact->city . ', ' . $contact->state . ', ' . $contact->zip_code }}
{{ $contact->name ?? '' }}
@if ($transaction_type) Transaction Type: {{ $transaction_type->name }} @endif
@if ($payment_type) Transaction Type: {{ $payment_type->name }} @endif
@endif --}}Statement Period
{{ date('m-d-Y', strtotime($statement_from_date)) }} to {{ date('m-d-Y', strtotime($statement_to_date)) }}
Transaction Statement Report
{{--OPENING BALANCE
TOTAL TRANSACTIONS
CLOSING BALANCE
| Transaction No | Transaction Type | Transaction Date | Amount | |
|---|---|---|---|---|
| #TR-{{ $transaction->id }} | {{ $transaction->TransectionType->name ?? 'N/A' }} | {{ date('m-d-Y', strtotime($transaction->created_at)) }} | @if ($transaction->TransectionType->type == 'debit')${{ number_format($transaction->transaction_amount, 2) }} | @elseif ($transaction->TransectionType->type == 'credit')-${{ number_format($transaction->transaction_amount, 2) }} | @endif
| Subtotal | ${{ number_format($subtotal, 2) }} | |||
| Transaction No | Transaction Type | Transaction Date | Amount | |
|---|---|---|---|---|
| #TR-{{ $transaction->id }} | {{ $transaction->TransectionType->name ?? 'N/A' }} | {{ date('m-d-Y', strtotime($transaction->created_at)) }} | @if ($transaction->TransectionType->type == 'debit') @php $quard_subtotal += $transaction->transaction_amount; @endphp${{ number_format($transaction->transaction_amount, 2) }} | @elseif ($transaction->TransectionType->type == 'credit') @php $quard_return_subtotal += $transaction->transaction_amount; @endphp-${{ number_format($transaction->transaction_amount, 2) }} | @endif
| Subtotal | ${{ number_format($quard_subtotal - $quard_return_subtotal, 2) }} | |||
ACCOUNT SUMMARY
Transaction Notes
Thank you for your contribution to QAFYS. This statement reflects all transactions associated with reference {{ $contact->first_name . ' ' . $contact->last_name }}.
--}}