{{ $company_info->name }}
@endif| DESCRIPTION OF SERVICES | RATE | VAT | TOTAL(BDT) |
|---|---|---|---|
| {{ $item->service->name ?? '' }} ({{ $item->quantity ?? '' }} MB) {{ date('d-M-Y', strtotime($item->from_date ?? '')) }} to {{ date('d-M-Y', strtotime($item->to_date ?? '')) }} | {{ number_format($item->rate, 2) }} | {{ number_format($item->vat, 2) }} | {{ number_format($item->line_total, 2) }} |
| SUB TOTAL | {{ number_format($invoice->total, 2) }} | ||
| DISCOUNT | {{ number_format($invoice->discount, 2) }} | ||
| GRAND TOTAL | {{ number_format($invoice->total - $invoice->discount, 2) }} | ||
| PAID AMOUNT | {{ number_format($invoice->paid, 2) }} | ||
| DUE | {{ number_format($invoice->total - ($invoice->discount + $invoice->paid), 2) }} | ||