Target Bonuses
Achieve your targets and unlock exciting
rewards!
@if (is_array($targetBonuses) || $targetBonuses instanceof \Illuminate\Support\Collection)
@foreach ($targetBonuses as $index => $bonus)
Target Bonus
{{ $index + 1 }}
Bonus Amount:
${{ number_format($bonus->bonus_amount, 2) }}
- Minimum Package: Launch Plan
- Target Amount:
${{ number_format($bonus->target_amount, 2) }}
@php
$userBonus = $userTargetBonuses->where('target_bonus_id', $bonus->id)->first();
$canRedeem = $totalTeamDeposits >= $bonus->target_amount && !$userBonus;
@endphp
@if ($userBonus)
Bonus Redeemed
@else
@endif
@endforeach
@else
No bonuses available at the moment.
@endif