| Customer Info | Invoice No: {{ date('Y') }}{{ $total_due->id ?? '' }} |
|---|
| Billing Date: {{ $total_due->due_date ?? '' }} |
| Description | Month | Amount |
|---|---|---|
| Monthly Bill | {{ date('F') }} | {{ $total_due->bill_amount ?? '' }} |
| Prevoius Due | - | @if ($total_due->due_amount > 0) {{ abs($total_due->bill_amount - $total_due->due_amount) }} @else {{ 0 }} @endif |
| Total Due: {{ $total_due->due_amount ?? '' }} |
|---|
| Customer Info | Invoice No: {{ date('Y') }}{{ $total_due->id ?? '' }} |
|---|
| Billing Date: {{ $total_due->due_date ?? '' }} |
| Description | Month | Amount |
|---|---|---|
| Monthly Bill | {{ date('F') }} | {{ $total_due->bill_amount ?? '' }} |
| Prevoius Due | - | @if ($total_due->due_amount > 0) {{ abs($total_due->bill_amount - $total_due->due_amount) }} @else {{ 0 }} @endif |
| Total Due: {{ $total_due->due_amount ?? '' }} |
|---|