Official Account Statement
| Account Name: {{ $user->name }} {{ $user->middle_name }} {{ $user->last_name }} | Account Number: {{ $user->account_number }} |
| Email: {{ $user->email }} | Currency: {{ currency($user->currency, 'code') }} |
| Period: {{ \Carbon\Carbon::parse($from)->format('M d, Y') }} - {{ \Carbon\Carbon::parse($to)->format('M d, Y') }} | Date Generated: {{ now()->format('M d, Y h:i A') }} |
| # | Date | Description | Type | Amount ({{ currency($user->currency, 'code') }}) | Balance ({{ currency($user->currency, 'code') }}) | Status |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ formatDateTime($transaction->transaction_at) }} | {{ $transaction->description ?? 'N/A' }} | {{ $transaction->type->label() }} | {{ $transaction->isDirectionCredit() ? '+' : '-' }}{{ formatAmount($transaction->amount) }} | {{ formatAmount($transaction->current_balance) }} | {{ ucfirst($transaction->status->label()) }} |
| Total Transactions: | {{ count($transactions) }} |
| Total Volume: | {{ formatAmount($totalAmount) }} {{ currency($user->currency, 'code') }} |