@php $customer = $invoice->customer; $store = $invoice->store; $items = $invoice->order->items; $currency_symbol = $currency['symbol']; @endphp
| Issued To: | No: {{$invoice->uid}} |
| {{$customer->name}} | Date: {{app_date($invoice->created_at)}} |
| {{$company_name}} | |
| {{$customer->email_address}} |
| Description | Unit Price | Qty | Total |
|---|---|---|---|
| {{$item->item}} | {{money(amount: $item->cost, symbol: $currency_symbol, format: true)}} | {{$item->quantity}} | {{money($item->total, symbol: $currency_symbol, format: true)}} |
| Total: {{money( amount: ($invoice->order->total - $invoice->order->additional_fee), symbol: $currency_symbol, format: true )}} |
| Additional fee: {{money( amount: $invoice->order->additional_fee, symbol: $currency_symbol, format: true)}} |
| Amount due: {{money( amount: $invoice->order->total, symbol: $currency_symbol, format: true)}} |