Transparent Pricing
Invest in Your
Trading Future
Simple pricing. No hidden fees. Cancel anytime. Start with the free plan and upgrade as you scale.
@foreach ($plans as $plan)
@php
$marketing_bullets = is_array($plan->features) && isset($plan->features['marketing_bullets'])
? $plan->features['marketing_bullets']
: (is_array($plan->features) ? $plan->features : []);
// Fix: Only use offer price if it is GREATER THAN 0
$displayPrice = ($plan->offer_price_monthly > 0) ? $plan->offer_price_monthly : ($plan->price_monthly ?? 0);
$regularPrice = $plan->price_monthly ?? 0;
$priceYearly = ($plan->offer_price_yearly > 0) ? $plan->offer_price_yearly : ($plan->price_yearly ?? 0);
$regularYearly = $plan->price_yearly ?? 0;
$priceLifetime = ($plan->offer_price_lifetime > 0) ? $plan->offer_price_lifetime : ($plan->price_lifetime ?? 0);
$regularLifetime = $plan->price_lifetime ?? 0;
$isPro = $plan->name === 'Pro' || $plan->is_popular;
@endphp
@if ($isPro)
{{ $plan->badge_text ?? 'Most Popular' }}
@endif
{{ $plan->name }}
{{ $plan->description ?? 'Unlock your potential' }}
@if($displayPrice == 0)
Free
@else
${{ $displayPrice }}
/mo
@endif
${{ $plan->price_monthly }}
@if($plan->offer_price_monthly > 0 && $plan->price_monthly > 0)
{{ round((($plan->price_monthly - $plan->offer_price_monthly) / $plan->price_monthly) * 100) }}% OFF
@endif
@foreach ($marketing_bullets as $feature)
@if(is_string($feature))
@endif
@endforeach
{{ $displayPrice == 0 ? 'Get Started Free' : 'Choose ' . $plan->name }}
@endforeach