@foreach($order->order_items()->get() as $item) @php $product = $item->product()->get()->first(); @endphp @php $product_item = $item->product_item()->get()->first(); @endphp @php $supplier = $product->suppliers()->get()[0]; @endphp @endforeach
@if($order->user->min_site == 1) @else @endif

Order Invoice


Invoice ID: #{{$order->id}}
Created: {{Carbon\Carbon::now()->format('l jS F Y')}}
READY FOR COLLECTION
@if($order->user->min_site == 1) Made In Northamptonshire
Arch Villa,
23 High Street,
Bozeat,
Northants,
NN29 7NF @else Edible16
34 Harborough Rd,
Great Oxendon,
Market Harborough
LE16 8NA @endif

Collection Address:

{{$order->DeliveryFirstName}} {{$order->DeliveryLastName}}, @if($order->DeliveryAddressLine1)
{{$order->DeliveryAddressLine1}},
@endif @if($order->DeliveryAddressLine2)
{{$order->DeliveryAddressLine2}},
@endif @if($order->DeliveryAddressLine3)
{{$order->DeliveryAddressLine3}},
@endif @if($order->DeliveryCity)
{{$order->DeliveryCity}},
@endif @if($order->DeliveryCounty)
{{$order->DeliveryCounty}},
@endif @if($order->DeliveryPostcode)
{{$order->DeliveryPostcode}}
@endif
@if($order->DeliveryMobileNumber)
Telephone: {{$order->DeliveryMobileNumber}}
@endif

COLLECTION INSTRUCTIONS - PLEASE READ CAREFULLY

@if($order->LocationID == 5) Once you arrive - please ensure you knock on the door of the shop so a member staff knows you have arrived. If you could then move out of the way, we will then bring your order out to you. @else Once you arrive - please ensure you make yourself known to the member of staff on the Waterloo Cottage Farm Stall on the right. We will then bring your order out to you. Please ensure you provide a safe distance for our staff members to ensure social distancing is kept at all times. @endif

 
Supplier Product Quantity Price Total
{{ $supplier->name}} {{ $product->name}} @if($product_item) - {{$product_item->name}} @endif {{ $item->quantity}} {{ $item->price}} {{ $item->total}}
Sub-Total: £{{ number_format(($order->total - $order->DeliveryPrice), 2) }}
Delivery: £{{ number_format($order->DeliveryPrice, 2) }}

Total: £{{ number_format(($order->total), 2) }}