From af1ebddeef0bd2ccce6d52d32fc7bd62639c0d15 Mon Sep 17 00:00:00 2001 From: Vivek Sharma Date: Sat, 8 Feb 2020 15:10:37 +0530 Subject: [PATCH] [Fixed: issue #2386 has been resolved.] --- .../views/shop/checkout/cart/index.blade.php | 39 ++++++++++++++++--- 1 file changed, 34 insertions(+), 5 deletions(-) diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/checkout/cart/index.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/checkout/cart/index.blade.php index 7a25571cd..db86139c1 100644 --- a/packages/Webkul/Velocity/src/Resources/views/shop/checkout/cart/index.blade.php +++ b/packages/Webkul/Velocity/src/Resources/views/shop/checkout/cart/index.blade.php @@ -11,6 +11,15 @@ @endsection +@push('css') + +@endpush + @push('scripts') @include('shop::checkout.cart.coupon') @@ -26,7 +35,7 @@ {{ __('velocity::app.checkout.items') }} - + {{ __('velocity::app.checkout.qty') }} @@ -67,17 +76,27 @@
-
+ -
+ @if (isset($item->additional['attributes'])) +
+ + @foreach ($item->additional['attributes'] as $attribute) + {{ $attribute['attribute_name'] }} : {{ $attribute['option_label'] }}
+ @endforeach + +
+ @endif + +
@include ('shop::products.price', ['product' => $product])
@@ -130,7 +149,7 @@
- +
{{ $product->name }} + @if (isset($item->additional['attributes'])) +
+ + @foreach ($item->additional['attributes'] as $attribute) + {{ $attribute['attribute_name'] }} : {{ $attribute['option_label'] }}
+ @endforeach + +
+ @endif +
@include ('shop::products.price', ['product' => $product])