Order {{ $orderReceived->invoice_number ?? '' }}

Date received: {{ date('d/m/Y',strtotime($orderReceived->date)) }}

{{ $company->name ?? ""}}

{{-- {{ dump( $orderReceived) }} --}}

{{ $shipping_detail->shipping_first_name ?? "" }} {{ $shipping_detail->shipping_last_name ?? "" }}

{{ $shipping_detail->shipping_address_line1 ?? "" }}

{{ $orderReceived->email ?? '' }} {{ $orderReceived->phone ?? '' }}

@php $total=0; $maintotal=0; @endphp @foreach ($items as $item) @endforeach
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) }}

Total cost:

${{number_format($maintotal + $shiping_cost ?? 0, 2) }}

{{ $payment_method->name ?? "" }}:

{{--

$64.95

--}}

${{"0.00"}}

Balance:

${{number_format($order->account_balance ?? 0, 2) }}