{{$data->paymentStatus}}

INVOICE : INV{{$data->reference}}
OrderId : {{$data->reference}}
Type: {{strtoupper($data->paymentStatus)}}
{{date('F d Y',strtotime($data->created_at))}}
{{@$data->agentData->name}}/{{@$data->userData->areaData->name}}


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}}

@php $totalPrice=NULL; $totalqty=NULL; @endphp @foreach($data->orderItems as $order) @php $totalPrice +=$order->price*$order->qty; $totalqty +=$order->qty; @endphp @endforeach @if($data->discount) @endif
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),2)}}
{{$totalqty}}Total £ {{number_format($totalPrice,2)}}
Delivery Charge £ {{number_format($data->shippingCharge,2)}}
Discount £ {{number_format($data->discount,2)}}
Total Amount £ {{number_format((($totalPrice+$data->shippingCharge)-$data->discount),2)}}