Statement Details

Reference: {{ $bankStatement->reference_number }}

Account
{{ $bankStatement->bankAccount->account_name }}
{{ $bankStatement->bankAccount->account_number }}
Opening Balance
${{ number_format($bankStatement->opening_balance, 2) }}
Closing Balance
${{ number_format($bankStatement->closing_balance, 2) }}

Statement Lines

{{ $lines->count() }} Entries
@foreach($lines as $line) @endforeach
Date Description Withdrawal (Dr) Deposit (Cr) Status
{{ \Carbon\Carbon::parse($line->transaction_date)->format('M d, Y') }}
{{ $line->description }}
{{ $line->bank_reference }}
{{ $line->debit > 0 ? '$'.number_format($line->debit, 2) : '-' }} {{ $line->credit > 0 ? '$'.number_format($line->credit, 2) : '-' }} @if($line->is_reconciled) Reconciled @else Open @endif