Plan Upgrade

Choose Your Plan

Manage and monitor all financial transactions

@if ($plans->isNotEmpty()) @foreach ($plans as $plan)
@if ($plan->name === 'Pro Plan') Most Popular @endif

{{ $plan->name }}

${{ number_format($plan->price, 2) }}

%{{ number_format($plan->cashback, 0) }} Cashback

$

@if (!empty($plan->indirect_levels)) @php $indirectLevels = is_string($plan->indirect_levels) ? json_decode($plan->indirect_levels, true) : $plan->indirect_levels; @endphp @if (is_array($indirectLevels) && !empty($indirectLevels))

Indirect Levels:

@foreach ($indirectLevels as $level)

Level {{ $level['level'] }}: {{ $level['percentage'] }}% (${{ number_format($level['amount'], 0) }})

@endforeach
@endif @endif

E-Book Access:

Bonus:

{{ $plan->description }}

@auth @if (auth()->user()->plan_id == $plan->id) @elseif ($plan->id === 1) @else @endif @else @endauth
@endforeach @else

No plans available or an error occurred while loading plans.

@endif