diff --git a/packages/Webkul/Shop/src/Resources/views/customers/account/orders/view.blade.php b/packages/Webkul/Shop/src/Resources/views/customers/account/orders/view.blade.php
index 4a34a9b41..0ad6b6099 100755
--- a/packages/Webkul/Shop/src/Resources/views/customers/account/orders/view.blade.php
+++ b/packages/Webkul/Shop/src/Resources/views/customers/account/orders/view.blade.php
@@ -68,6 +68,7 @@
{{ $item->type == 'configurable' ? $item->child->sku : $item->sku }}
|
+
{{ $item->name }}
@if (isset($item['additional']['attributes']))
@@ -76,7 +77,11 @@
@endforeach
@endif
|
- {{ core()->formatPrice($item->price, $order->order_currency_code) }} |
+
+
+ {{ core()->formatPrice($item->price, $order->order_currency_code) }}
+ |
+
{{ __('shop::app.customer.account.order.view.item-ordered', ['qty_ordered' => $item->qty_ordered]) }}
@@ -98,10 +103,22 @@
{{ $item->qty_canceled ? __('shop::app.customer.account.order.view.item-canceled', ['qty_canceled' => $item->qty_canceled]) : '' }}
|
- {{ core()->formatPrice($item->total, $order->order_currency_code) }} |
- {{ number_format($item->tax_percent, 2) }}% |
- {{ core()->formatPrice($item->tax_amount, $order->order_currency_code) }} |
- {{ core()->formatPrice($item->total + $item->tax_amount, $order->order_currency_code) }} |
+
+
+ {{ core()->formatPrice($item->total, $order->order_currency_code) }}
+ |
+
+
+ {{ number_format($item->tax_percent, 2) }}%
+ |
+
+
+ {{ core()->formatPrice($item->tax_amount, $order->order_currency_code) }}
+ |
+
+
+ {{ core()->formatPrice($item->total + $item->tax_amount - $item->discount_amount, $order->order_currency_code) }}
+ |
@endforeach