@extends('user.layouts.app') @push('styles') @endpush @section('body_class', 'payment-history') @section('content')
| SL No. | Transaction Date | Transaction No. | Particulars | Debit (₹) | Credit (₹) | Opening Balance (₹) |
|---|---|---|---|---|---|---|
| {{ $error }} | ||||||
| {{ $loop->iteration }} | {{ !empty($transaction['TransDate']) ? \Carbon\Carbon::parse($transaction['TransDate'])->format('d-m-Y') : 'NA' }} | {{ $transaction['strTransNo'] ?? 'NA' }} | @if($invoiceDownloadUrl) {{ $statementLabel }} @else {{ $statementLabel }} @endif | {{ $debitAmount !== '' && is_numeric($debitAmount) ? number_format((float) $debitAmount, 2) : '0.00' }} | {{ $creditAmount !== '' && is_numeric($creditAmount) ? number_format((float) $creditAmount, 2) : '0.00' }} | {{ $closingRaw }} |
| No statement data found. | ||||||