gruene-seele/resources/views/user/promotion/cart.blade.php
2021-11-09 18:40:18 +01:00

15 lines
No EOL
806 B
PHP

<h5>
Potentielle Kosten für diese Promotion:
{{ formatNumber($user_promotion_cart['price_net']) }} netto / {{ formatNumber($user_promotion_cart['price']) }} inkl. MwSt.
</h5>
@if(isset($checkPaymentCredit))
@if($checkPaymentCredit === 'empty')
<h6 class="alert badge-danger mt-3 py-2">Du hast kein Guthaben aus Deinem Konto auf, lade Dein Konto auf, bis dahin ist die Promotion gestoppt.</h6>
@endif
@if($checkPaymentCredit === 'okay')
<h6 class="alert badge-success mt-3 py-2">Dein Guthaben ist für diese Promotion</h6>
@endif
@if($checkPaymentCredit === 'not')
<h6 class="alert badge-danger mt-3 py-2">Dein Guthaben ist nicht ausreichend für diese Promotion, lade Dein Konto auf, bis dahin ist die Promotion gestoppt.</h6>
@endif
@endif