@extends('user.layouts.app') @section('body_class', 'payment-gateway') @section('content')
@php $counter = 0; // Initialize the counter to limit the rows to 6 @endphp @foreach($filteredData['Result'] as $index => $transaction) @php // Stop after 6 rows if ($counter >= 6) break; // Get debit, credit, and closing balance values $debitAmount = floatval($transaction['dblDrAmt']); $creditAmount = floatval($transaction['dblCrAmt']); $closingBalance = floatval($transaction['dblClosingBal']); $openingBalance = $closingBalance + $creditAmount - $debitAmount; // Increment the counter $counter++; @endphp @endforeach
SL No. Month Opening Bal Total Debit Total Credit Closing Bal Invoice
{{ $index + 1 }} {{ \Carbon\Carbon::parse($transaction['TransDate'])->format('d-m-Y') }} {{ number_format($openingBalance, 2) }} {{ number_format($debitAmount, 2) }} {{ number_format($creditAmount, 2) }} {{ number_format($closingBalance, 2) }} Download

Online payment system has been updated and members may face issues after making payment. In order to resolve the issue kinldy clear your browser cache. Click here to know more about how to clear your browser cache.

Membership No EXE63
Amount to pay (in Rs):

You can make a full or part payment for your bills.

@endsection @section('footer') @endsection @push('scripts') @endpush