@if ($user->bonus_points < setting('redeem_threshold'))
You need at least {{ setting('redeem_threshold') }} bonus points to redeem discounts.
@endif
Bonus Point Details
-
Current Bonus Points
{{ $user->bonus_points }}
-
Equivalent Value
{{ number_format($user->bonus_points * setting('points_conversion_rate'), 2) }}{{ setting('default_currency_symbol') }}
-
Conversion Rate
1 Point = {{ setting('points_conversion_rate') }}{{ setting('default_currency_symbol') }}
🏷️ Redeemable Discounts
(Below are the websites where you can redeem your points while shopping!)
@if ($user->bonus_points >= setting('redeem_threshold'))
@forelse ($websites as $website)
@empty
No redeemable discount found.
@endforelse
@else
You do not have enough bonus points to redeem discounts.
@endif