52 lines
No EOL
2.8 KiB
PHP
52 lines
No EOL
2.8 KiB
PHP
<section>
|
|
<div class="row">
|
|
<div class="col-md-6 text-left">
|
|
<h2 class="mt-3">Wähle Deine Versandart</h2>
|
|
<div class="switchers-stacked">
|
|
@php($shipping_option = Yard::instance('shopping')->getShippingOption())
|
|
<label class="switcher switcher-success">
|
|
<input type="radio" class="switcher-input" name="switchers_shipping" data-error="#error-switchers_shipping" value="pick_up" required
|
|
@if($shipping_option === 'pick_up') checked @endif>
|
|
<span class="switcher-indicator">
|
|
<span class="switcher-yes">
|
|
<span class="ion ion-md-checkmark"></span>
|
|
</span>
|
|
<span class="switcher-no"></span>
|
|
</span>
|
|
<span class="switcher-label">0,00 € - Ich hole die Ware bei {{ $promotion_user->user->getFullName() }} persönlich ab</span>
|
|
</label>
|
|
{{-- <label class="switcher switcher-success">
|
|
<input type="radio" class="switcher-input" name="switchers_shipping" data-error="#error-switchers_shipping" value="dhl_slow">
|
|
<span class="switcher-indicator">
|
|
<span class="switcher-yes">
|
|
<span class="ion ion-md-checkmark"></span>
|
|
</span>
|
|
<span class="switcher-no"></span>
|
|
</span>
|
|
<span class="switcher-label">3,50 € - Bücher-/Warensendung mit Deutsche Post (4-6
|
|
Werktage)</span>
|
|
</label>
|
|
--}}
|
|
<label class="switcher switcher-success">
|
|
<input type="radio" class="switcher-input" name="switchers_shipping" data-error="#error-switchers_shipping" value="dhl_shipping"
|
|
@if($shipping_option === 'dhl_shipping') checked @endif>
|
|
<span class="switcher-indicator">
|
|
<span class="switcher-yes">
|
|
<span class="ion ion-md-checkmark"></span>
|
|
</span>
|
|
<span class="switcher-no"></span>
|
|
</span>
|
|
<span class="switcher-label">ab {{ \App\Services\PromotionCart::getLowestShippingPrice() }} € - Versand mit DHL (1-3 Werktage)</span>
|
|
</label>
|
|
</div>
|
|
<div id="error-switchers_shipping" class="text-left"></div>
|
|
</div>
|
|
<div class="col-md-6 text-left text-md-right">
|
|
<h2 class="mt-3">Kontakt & Abholadresse</h2>
|
|
{!! nl2br($promotion_user->user_address) !!}
|
|
</div>
|
|
<div class="mt-2 col-12">
|
|
<hr class="">
|
|
</div>
|
|
</div>
|
|
</section> |