{{ env('APP_ADDRESS') }}
{{ env('APP_EMAIL') }}
{{ env('APP_PHONE') }}
{{ strtoupper($user->account_type) }} ACCOUNT STATEMENT
{{ $user->first_name }} {{ $user->last_name }}
{{ $user->address }}
{{ $user->email }}
Statement period
{{ $fromDate }} to {{ $toDate }}
Account Number
{{ $user->account_number }}
| # | Reference ID | Amount | Type | Direction | Balance | Description | Date |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $transaction->reference_id }} | {{ currency($user->currency, 'code') }} {{ formatAmount($transaction->amount) }} | {{ $transaction->type->label() }} | {{ $transaction->direction->label() }} | {{ currency($user->currency, 'code') }} {{ formatAmount($transaction->current_balance) }} | {{ $transaction->description }} | {{ date('d M Y, h:i:s A', strtotime($transaction->transaction_at)) }} |
| *** Totals *** | {{ currency($user->currency, 'code') }} {{ formatAmount($totalAmount) }} | ||||||