gruene-seele/resources/views/user/promotion/cart.blade.php
2021-10-15 16:35:47 +02:00

17 lines
No EOL
823 B
PHP

<h5>
Potentielle Kosten für diese Promotion:
{{ formatNumber($user_promotion_cart['price_net']) }} netto / {{ formatNumber($user_promotion_cart['price']) }} inkl. MwSt.
</h5>
<p>Text ...</p>
@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