@if( isset( $company_logo ) && $company_logo != '' ) @endif
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 ?? '' }}
@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) }}
@isset($shipping_method) @if($shiping_cost != 0.00 || $shiping_cost != 0) @endif @endisset
Total cost: ${{number_format($maintotal?? 0, 2) }}
{{$shipping_method}}: ${{number_format($shiping_cost ?? 0, 2) }}
{{ $payment_method->name ?? "" }}: ${{"0.00"}}
Balance: ${{number_format($order->account_balance ?? 0, 2) }}