@extends('layouts.guest-page') @section('title', 'Pricing') @section('description', 'Choose the plan that fits your trading needs. Flexible monthly, yearly, and lifetime options.') @section('keywords', 'pricing, trading plans, subscription, cost, value') @section('no-container', true) @section('content')

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 : []); $displayPrice = $plan->offer_price_monthly ?? $plan->price_monthly ?? 0; $regularPrice = $plan->price_monthly ?? 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(isset($plan->offer_price_monthly) && $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))
{{ $feature }}
@endif @endforeach
{{ $displayPrice == 0 ? 'Get Started Free' : 'Choose ' . $plan->name }}
@endforeach
@endsection