Reg No: {{ $regNo }}
Student Name: {{ $stdName }}
Father Name: {{ $fthName }}
Father CNIC: {{ $fthCnic }}
Date Range: {{ $startDate }} to {{ $endDate }}
| Date | Type | Description | Debit | Credit | Total |
|---|---|---|---|---|---|
| Opening Balance | {{ number_format($stdOpenBalance, 2) }} | ||||
| {{ \Carbon\Carbon::parse($item->created_at)->format('Y-m-d') }} | {{ $item->transaction_type ?? '-' }} | {{ $item->remarks ?? '-' }} | {{ $item->debit > 0 ? number_format($item->debit, 2) : '' }} | {{ $item->credit > 0 ? number_format($item->credit, 2) : '' }} | {{ number_format($total, 2) }} |
| Total | {{ number_format($totalDebit, 2) }} | {{ number_format($totalCredit, 2) }} | {{ number_format($total, 2) }} | ||