57 lines
No EOL
3 KiB
PHP
57 lines
No EOL
3 KiB
PHP
<section>
|
|
<h2 class="text-center">1 Tester gratis für Dich</h2>
|
|
<p class="text-center">Wähle nun eines der aufgeführten Produkte.</p>
|
|
|
|
<div class="row justify-content-center">
|
|
@php($free_product_id = Yard::instance('shopping')->getFreeProductId())
|
|
|
|
@foreach ($promotion_user->promotion_user_products_active as $promotion_user_product)
|
|
@if ($promotion_user_product->isShow())
|
|
<div class="col-md-6 col-lg-4 text-center">
|
|
@if ($promotion_user_product->product->images)
|
|
@if ($image = $promotion_user_product->product->images->first())
|
|
<img src="{{ route('product_image', [$image->slug]) }}" class="mb-2 img-fluid" alt="">
|
|
@endif
|
|
@endif
|
|
<h4 class="product-title">
|
|
{{ $promotion_user_product->product->name }}
|
|
</h4>
|
|
<div class="mb-2 product-description">
|
|
{{ $promotion_user_product->product->getShortCopy(true, 110) }}
|
|
</div>
|
|
<div class="more_details">
|
|
<a href="" class="" data-modal="modal-lg" data-toggle="modal"
|
|
data-target="#modals-load-content"
|
|
data-id="{{ $promotion_user_product->product->id }}"
|
|
data-route="{{ route('web_promotion_modal_load') }}"
|
|
data-action="web-show-product" data-view="no-price">
|
|
<i class="fa fa-search"></i> Mehr Details</a>
|
|
</div>
|
|
<div class="mt-4 mb-3">
|
|
<div class="switcher-holder btn-add-free-product">
|
|
<label class="switcher switcher-success">
|
|
<input type="radio" class="switcher-input" name="user_free_product"
|
|
value="{{ $promotion_user_product->product->id }}" data-error="#error-user_free_product"
|
|
@if($free_product_id === $promotion_user_product->product->id) checked @endif
|
|
required>
|
|
<span class="switcher-indicator">
|
|
<span class="switcher-yes">
|
|
<span class="ion ion-md-checkmark"></span>
|
|
</span>
|
|
<span class="switcher-no">
|
|
<span class="ion ion-md-close"></span>
|
|
</span>
|
|
</span>
|
|
<span class="switcher-label"> möchte ich haben</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
@endforeach
|
|
<div class="col-12">
|
|
<div id="error-user_free_product" class="text-center"></div>
|
|
<hr class="">
|
|
</div>
|
|
</div>
|
|
</section> |