Term: {{ $bill->term_id }}
Session: {{ $bill->sch_session }}
Next Term Begins: {{ $settings['term_begins'] }}
| Item | Description | Amount ({{ \App\Helpers\Mk::getCurrencyCode() }}) | Total Amount |
|---|---|---|---|
| {{ $item->name }} | {{ $item->description }} | {{ number_format($item->amount, 2, '.', ',') }} | {{ number_format($item->pivot->total_amount, 2, '.', ',') }} |
Total Amount: {{ \App\Helpers\Mk::formatCurrency($bill->total_amount) }}
Discount: {{ \App\Helpers\Mk::formatCurrency($bill->discount_value) }}
Due Amount: {{ \App\Helpers\Mk::formatCurrency($bill->due_amount) }}
Previous Balance: {{ \App\Helpers\Mk::formatCurrency($bill->pre_bal) }}
@if($bill->credit != null || $bill->credit != 0)Credit: {{ \App\Helpers\Mk::formatCurrency($bill->credit) }}
@endif