{{$data->paymentStatus}}

INVOICE : INV{{$data->reference}}
OrderId : {{$data->id}}
Type: {{$data->paymentStatus}}
{{date('F d Y',strtotime($data->created_at))}}
Ritik/Gloucestershire

Delivery Note

Customer : {{@$data->userData->userid}}

{{@$data->userData->owner_name}}

{{@$data->userData->name}}
{{@$data->userData->address}}
{{@$data->userData->GetCountry->name}} - {{@$data->userData->pincode}}
{{@$data->userData->mobile}}
{{@$data->userData->email}}

BILLING ADDRESS:

{{@$data->userData->name}} - {{@$data->userData->mobile}}

{{@$data->userData->address}} - {{@$data->userData->pincode}}

@php $totalPrice=NULL; $totalqty=NULL; @endphp @foreach($data->orderItems as $order) @php $totalPrice +=$order->price*$order->qty+$vat; $totalqty +=$order->qty; @endphp @endforeach
Product Code Product Name Qty Price Total Price
{{@$order->product->sku}} {{@$order->product->title}} {{$order->qty}} £ {{number_format($order->price ,2)}} £ {{number_format(($order->price*$order->qty+$vat),2)}}
{{$totalqty}}Total £ {{number_format($totalPrice,2)}}
Delivery Charge £ {{number_format($data->shippingCharge,2)}}
Total Amount £ {{number_format($data->totalAmt,2)}}