testemich Promotion
This commit is contained in:
parent
38e7fd504a
commit
a0f4eda6ea
83 changed files with 1690 additions and 504 deletions
|
|
@ -4,6 +4,7 @@
|
|||
<h2 class="mt-3">Wähle Deine Versandart</h2>
|
||||
<div class="switchers-stacked">
|
||||
@php($shipping_option = Yard::instance('shopping')->getShippingOption())
|
||||
@if($promotion_user->pick_up)
|
||||
<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>
|
||||
|
|
@ -15,23 +16,26 @@
|
|||
</span>
|
||||
<span class="switcher-label">0,00 € - Ich hole die Ware bei {{ $promotion_user->user->getFullName(false) }} persönlich ab (Abholadresse beachten)</span>
|
||||
</label>
|
||||
@endif
|
||||
<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>
|
||||
@if($shipping_option === 'dhl_shipping') checked @endif required>
|
||||
<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"><span id="shipping_price_holder">{{ \App\Services\PromotionCart::getLowestShippingPrice() }}</span> € - Versand mit DHL (1-3 Werktage)</span>
|
||||
<span class="switcher-label"><span id="shipping_price_holder">{{ \App\Services\PromotionCart::getCurrentShippingPrice() }}</span> € - 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">
|
||||
@if($promotion_user->pick_up)
|
||||
<h2 class="mt-3">Kontakt & Abholadresse</h2>
|
||||
{!! nl2br($promotion_user->user_address) !!}
|
||||
@endif
|
||||
</div>
|
||||
<div class="mt-2 col-12">
|
||||
<hr class="">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue