Skip to content

Commit

Permalink
[Fixed: issue bagisto#2386 has been resolved.]
Browse files Browse the repository at this point in the history
  • Loading branch information
vivek-webkul committed Feb 8, 2020
1 parent e78e61d commit af1ebdd
Showing 1 changed file with 34 additions and 5 deletions.
Expand Up @@ -11,6 +11,15 @@
<cart-component></cart-component>
@endsection

@push('css')
<style type="text/css">
.quantity {
width: unset;
float: right;
}
</style>
@endpush

@push('scripts')
@include('shop::checkout.cart.coupon')

Expand All @@ -26,7 +35,7 @@
{{ __('velocity::app.checkout.items') }}
</span>

<span class="col-2 fw6 fs16 no-padding text-center">
<span class="col-2 fw6 fs16 no-padding text-right">
{{ __('velocity::app.checkout.qty') }}
</span>

Expand Down Expand Up @@ -67,17 +76,27 @@ class="card-img-top"
</a>

<div class="product-details-content col-6">
<div class="row item-title">
<div class="row item-title no-margin">
<a
href="{{ route('shop.productOrCategory.index', $product->url_key) }}"
title="{{ $product->name }}"
class="unset col-12">
class="unset col-12 no-padding">

<span class="fs20 fw6 link-color">{{ $product->name }}</span>
</a>
</div>

<div class="row col-12">
@if (isset($item->additional['attributes']))
<div class="row col-12 no-padding no-margin">

@foreach ($item->additional['attributes'] as $attribute)
<b>{{ $attribute['attribute_name'] }} : </b>{{ $attribute['option_label'] }}</br>
@endforeach

</div>
@endif

<div class="row col-12 no-padding no-margin">
@include ('shop::products.price', ['product' => $product])
</div>

Expand Down Expand Up @@ -130,7 +149,7 @@ class="unset
</a>
</div>
</div>

<div class="product-quantity col-3 no-padding">
<quantity-changer
:control-name="'qty[{{$item->id}}]'"
Expand Down Expand Up @@ -166,6 +185,16 @@ class="unset col-12 no-padding">
<span class="fs20 fw6 link-color">{{ $product->name }}</span>
</a>

@if (isset($item->additional['attributes']))
<div class="row col-12 no-padding no-margin">

@foreach ($item->additional['attributes'] as $attribute)
<b>{{ $attribute['attribute_name'] }} : </b>{{ $attribute['option_label'] }}</br>
@endforeach

</div>
@endif

<div class="col-12 no-padding">
@include ('shop::products.price', ['product' => $product])
</div>
Expand Down

0 comments on commit af1ebdd

Please sign in to comment.