INVOICE
#{{$data->reference}}
{{date('d/m/Y',strtotime($data->created_at))}}
VAT Number 310145124100003

DELIVERY ADDRESS:

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

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

BILLING ADDRESS:

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

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

Invoice Number Invoice Date Order Id Order Date
#{{$data->reference}} {{date('d/m/Y',strtotime($data->created_at))}} {{$data->reference}} {{date('d/m/Y',strtotime($data->created_at))}}
@php $totalPrice=NULL; @endphp @foreach($data->orderItems as $order) @php $totalPrice +=$order->price*$order->qty+$vat; @endphp @endforeach
Reference Img Product Price Qty Net Vat(18%) Total Price
{{@$order->product->sku}} @if($order->product->main_img) {{$order->product->title}} @else {{$order->product->title}} @endif {{@$order->product->title}} £ {{number_format($order->price ,2)}} {{$order->qty}} £ {{number_format(($order->price*$order->qty),2)}} £ {{$vat=number_format(($order->price*$order->qty*18/100),2)}} £ {{number_format(($order->price*$order->qty+$vat),2)}}



Sub Total £ {{number_format($totalPrice,2)}}
Delivery Charge £ {{number_format($data->shippingCharge,2)}}
Total £ {{number_format($data->totalAmt,2)}}