Office Copy
|
Customer
|
Info
|
Invoice No: {{ date('Y') }}{{ $r->invoice_id ?? '' }}
Name : {{ $r->userid }}
Mobile : {{ $r->contact_no ?? '' }}
|
Monthly Bill: {{ $r->billamount ?? '' }} |
Prevoius Due:
@if ($r->due_amount > 0)
{{ abs($r->billamount - $r->due_amount) }}
@else
{{ 0 }}
@endif
|
Total Due: {{ $r->due_amount ?? '' }}
Signature ....... |
|
Customer Info |
Invoice No: |
{{ date('Y') }}{{ $r->invoice_id ?? '' }} |
Name : {{ $r->userid }}
Mobile : {{ $r->contact_no ?? '' }} |
Billing Date: |
{{ $r->billdate ?? '' }}
|
Description |
Month |
Amount |
Monthly Bill |
{{ date('M') }} |
{{ $r->billamount ?? '' }} |
Prevoius Due |
- |
@if ($r->due_amount > 0)
{{ abs($r->billamount - $r->due_amount) }}
@else
{{ 0 }}
@endif
|
|
Total Due: |
{{ $r->due_amount ?? '' }} |
|