|
@if( isset( $company_logo ) && $company_logo != '' )
|
Order: {{ $orderReceived->invoice_number ?? '' }}
Date received: {{ date('d/m/Y',strtotime($orderReceived->date)) }} {{ $company->name ?? ""}} |
{{ $shipping_detail->shipping_first_name ?? "" }} {{ $shipping_detail->shipping_last_name ?? "" }}{{ $shipping_detail->shipping_address_line1 ?? "" }}{{ $orderReceived->email ?? '' }} {{ $orderReceived->phone ?? '' }} |
| Description | Item Code | Qty | Price | Total |
|---|---|---|---|---|
| {{ $item->product_name ?? "" }} | {{ $item->product_code ?? "" }} | {{ $item->deduct_quantity ?? "" }} | ${{ number_format($item->product_cost ?? 0, 2) }} | @php $total= $item->deduct_quantity * $item->product_cost; $maintotal+= $item->deduct_quantity * $item->product_cost; @endphp ${{number_format($total ?? 0, 2) }} |
| {{ $shipping_method ?? "" }} | ${{number_format( $shiping_cost ?? 0, 2) }} | |||
|