BANK TRANSACTIONS

Current Balance: ₹ {{ number_format($balance,2) }}
Transactions
@foreach($transactions as $t) @endforeach
ID Cheque No Payee Amount Status Balance After Action
{{ $t->id }} {{ $t->cheque_no }} {{ $t->payee_name }} ₹ {{ number_format($t->amount,2) }} @if($t->status == 'Pending') Pending @else Cleared @endif {{ $t->balance_after }} @if($t->status == 'Pending') Clear @endif