{{ $employee->employee_code ?: 'No Code' }} | {{ $employee->designation?->name ?? 'No Designation' }} | {{ $employee->employee_type === 'monthly' ? 'Monthly' : 'Daily Roz' }}
|
Total Debit
{{ $formatMoney($summary['total_debit'] ?? 0) }}
|
Total Credit
{{ $formatMoney($summary['total_credit'] ?? 0) }}
|
Balance
{{ $formatMoney($summary['balance'] ?? 0) }}
|
Outstanding Advance
{{ $formatMoney($summary['outstanding_advance'] ?? 0) }}
|
| Date | Type | Reference | Description | Debit | Credit |
|---|---|---|---|---|---|
| {{ optional($entry->entry_date)->format('d M Y h:i A') }} | {{ $typeLabel }} | {{ $referenceText }} | {{ $entry->description ?: '-' }} | {{ $formatMoney($entry->debit) }} | {{ $formatMoney($entry->credit) }} |
| No ledger entry found. | |||||