| SKU |
Product |
Price |
Qty |
VAT({{$vat}}%) |
Total Price |
@php $totalPrice=NULL; @endphp
@foreach($data->orderItems as $order)
| {{@$order->product->title}} |
£ {{number_format($order->price ,2)}} |
{{$order->qty}} |
£ {{$vat2=round($order->qty*$order->price*$vat/100,2)}} |
£ {{number_format(($order->price*$order->qty+$vat2),2)}} |
@php $totalPrice +=$order->price*$order->qty+$vat2; @endphp
@endforeach
|
|
|
|
|
| Sub Total: |
£ {{number_format($totalPrice,2)}} |
| Delivery Charge: |
£ {{number_format($data->shippingCharge,2)}} |
| Total : |
£ {{number_format($data->totalAmt,2)}} |
|
|
|