@php $customer = $quotation->customer; $store = $quotation->store; $items = $quotation->items; $currency_symbol = $currency['symbol']; @endphp
| Issued To: | No: {{$quotation->uid}} |
| {{$customer->name}} | Date: {{app_date($quotation->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: ($quotation->total - $quotation->additional_fee), symbol: $currency_symbol, format: true )}} |
| Additional fee: {{money( amount: $quotation->additional_fee, symbol: $currency_symbol, format: true)}} |
| Amount due: {{money( amount: $quotation->total, symbol: $currency_symbol, format: true)}} |