Billing Address:

{{ $orders->billing_address_line_1 }} {{ $orders->billing_address_line_2 }} {{ (!empty($orders->billing_address_line_3))?$orders->billing_address_line_3:'' }} {{ $orders->billing_town_city }} {{ $orders->billing_postcode }} {{ (!empty($orders->billing_county))?$orders->billing_county:'' }} {{ $orders->billing_country }}

Payment Method:

{{ (($orders->payment_method == "credit_use") ? 'Credit Note' : 'Stripe') }}

@php $totalamount = 0.00; @endphp @foreach ($orders->order_product_item as $shopOrderItem) @php $shopamount = $shopOrderItem['total_amount'] + $shopOrderItem['vat_amount']; $totalamount = $totalamount + $shopamount; @endphp @endforeach @if($deliverystatus == 'Yes') @endif
Products SKU Price Qty Vat Subtotal
{{ $shopOrderItem['product_name'] }} @if ($shopOrderItem['product']['type'] == "configurable") @empty(!$shopOrderItem['personalised_product']) Personalise Title: {{ $shopOrderItem['personalised_product'] }} @endempty @empty(!$shopOrderItem['order_configurable_option']) @foreach (json_decode($shopOrderItem['order_configurable_option']['attribute_option']) as $attributeOptionItem) {{ Str::ucfirst($attributeOptionItem->attribute->attribute_name) }} : {{ Str::ucfirst($attributeOptionItem->attribute_value) }} @endforeach @endempty @endif {{ $shopOrderItem['sku'] }} £{{ number_format($shopOrderItem['amount'],2) }} {{ $shopOrderItem['qty'] }} £{{ number_format($shopOrderItem['vat_amount'],2) }} £{{ number_format(($shopOrderItem['total_amount'] + $shopOrderItem['vat_amount']),2) }}
Delivery Method(Shipping Express) {{$deliveryamount}}
Total: £{{ number_format(($totalamount + $deliveryamount),2) }}