@php $customer = $invoice->customer; $store = $invoice->store; $items = $invoice->order->items; $currency_symbol = $currency['symbol']; @endphp Invoice {{$invoice->uid}}
store logo

{{$store->name}}

@if($company_name = $customer->company_name) @endif
Issued To: No: {{$invoice->uid}}
{{$customer->name}} Date: {{app_date($invoice->created_at)}}
{{$company_name}}
{{$customer->email_address}}
@foreach($items as $item) @endforeach
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)}}
Thank You