42 lines
No EOL
2.2 KiB
PHP
42 lines
No EOL
2.2 KiB
PHP
|
|
<div class="card mt-4">
|
|
<div class="card-body">
|
|
@if($comp_products && Yard::instance('shopping')->getNumComp() > 0)
|
|
<input type="hidden" name="count_comp_products" value="{{Yard::instance('shopping')->getNumComp()}}">
|
|
@for($i = 1; $i <= Yard::instance('shopping')->getNumComp(); $i++)
|
|
@if(Yard::instance('shopping')->getNumComp() > 1)
|
|
<h4 class="border-bottom pb-2">{{$i}}. Versand Kompensationsprodukt</h4>
|
|
@else
|
|
<h4 class="border-bottom pb-2">Versand Kompensationsprodukt</h4>
|
|
@endif
|
|
<div class="row no-gutters row-bordered">
|
|
@php($counter = 1)
|
|
@php($checked_id = Yard::instance('shopping')->getCompProductBy($i))
|
|
@foreach($comp_products as $comp_product)
|
|
|
|
<div class="media col-md-6 col-lg-4 p-4">
|
|
<div class="d-block ui-w-80 ui-bordered mr-3">
|
|
@if(count($comp_product->images))
|
|
<img src="{{ route('product_image', [$comp_product->images->first()->slug]) }}" class="img-fluid" alt="">
|
|
@endif
|
|
</div>
|
|
<div class="media-body">
|
|
<label class="switcher switcher-secondary">
|
|
<input type="radio" class="switcher-input" value="{{$comp_product->id}}" data-comp_num="{{$i}}" name="switchers-comp-product[{{$i}}]" @if($checked_id == $comp_product->id) checked @endif required>
|
|
<span class="switcher-indicator">
|
|
<span class="switcher-yes"></span>
|
|
<span class="switcher-no"></span>
|
|
</span>
|
|
<span class="switcher-label"></span>
|
|
</label>
|
|
<div class="text-body mt-2"><strong>{{ $comp_product->name }}</strong></div>
|
|
<div class="">Art-Nr.: {{ $comp_product->number }}</div>
|
|
</div>
|
|
</div>
|
|
@php($counter++)
|
|
@endforeach
|
|
</div>
|
|
@endfor
|
|
@endif
|
|
</div>
|
|
</div> |