Account Statement

Statement Information
From:{{ dateformat($from_date) }}
To:{{ dateformat($to_date) }}
Account information
Account Name: {{ $account->account_name }}
Account No: {{ $account->account_number }}
Bank Name: {{ $account->bank_name }}
Opening Balance: {{ $account->opening_balance }}
{{-- Opening Balance Row --}} {{-- Transaction Records --}} @php $sl = 2; @endphp @foreach ($statements as $transaction) @endforeach {{-- Closing Balance Row --}}
@lang('SL') @lang('Date') @lang('Description') @lang('TRN No') @lang('Voucher No') @lang('Remark') @lang('Credit') @lang('Debit') @lang('Balance')
1 @lang('Opening Balance') {{ numberFormat($opening['total_credit']) }} {{ numberFormat($opening['total_debit']) }} {{ numberFormat($opening['balance']) }}
{{ $sl++ }} {{ dateformat($transaction['date']) }} {{ $transaction['description'] }} {{ $transaction['trn_no'] }} {{ $transaction['voucher_no'] }} {{ $transaction['remark'] }} {{ numberFormat($transaction['credit']) }} {{ numberFormat($transaction['debit']) }} {{ numberFormat($transaction['balance']) }}
{{ $sl }} @lang('Closing Balance') {{ number_format($closing_balance, 2) }}