|
Invoice |
| Prepared By | Prepared For | Invoice Detail |
|---|---|---|
| AccessWorld Tech. | {{ $invoice->customer->display_name }} |
Code: {{ $invoice->code }}
Date: {{ $invoice->date }}
|
| 5th Floor Bhat Bhateni | {{ $invoice->customer->detail->address }} | |
| Krishna Galli, Lalitpur | ||
| Phone: (987) 555-5555 |
| # | Name | Service | Term | Price |
| {{ ++$key }} | {{ $order->name }} | {{ class_basename($order) }} | {{ is_null($order->term) ? $order->duration .' Year(s)' : $order->term . ' Month(s)' }} | {{ get_local_currency_code().' '.number_format(get_local_price($order->price, true) ,2) }} |
| Sub total: | {{ get_local_currency_code().' '.number_format(get_local_price($invoice->sub_total, true), 2) }} | |||
| VAT ({{ \App\Models\Invoice::getVat() * 100 }}%): | {{ get_local_currency_code().' '.number_format(get_local_price($invoice->vat, true), 2) }} | |||
| Grand total: | {{ get_local_currency_code().' '.number_format(get_local_price($invoice->total, true), 2) }} | |||
{!!website('invoice_info')!!}