| Thank you for your Christmas Order - we will send you an email and SMS shortly. |
To confirm you have placed a @if($order->ClickCollect) Click Collect @else Weekly @endif Order - We will update you via SMS/Email in relation when your Delivery/Collection is ready.
@php $week = \App\OrderAvailablity::where("id", $order->WeekID)->first(); @endphpThis will be @if($order->LocationID == null)Delivered on: {{str_replace("Delivery/Collection on", "", $week->title)}}@else Available for Collection on: @if($order->CollectDate) {{\Carbon\Carbon::parse($order->CollectDate)->format("l jS F Y")}} @else {{str_replace("Delivery/Collection on", "", $week->title)}} @endif @endif
@endif
|
|||||||
|
|||||||
| Supplier | Product | Price | Quantity | Total | |||
| {{ $supplier->name}} | {{ $product->name}} @if($product_item) - {{$product_item->name}} @endif | £{{ number_format( $item->price, 2)}} | {{ $item->quantity}} | £{{ number_format( $item->total, 2)}} | |||
| Sub-Total: £{{ number_format(($order->total - $order->DeliveryPrice), 2) }} | |||||||
| Delivery: £{{ number_format($order->DeliveryPrice, 2) }} | |||||||
Total: £{{ number_format(($order->total), 2) }} |
|||||||