@if($plan->planTier && $plan->planTier->sort_order > 1)
Most Popular
@endif

{{ $plan->name }}

@if($plan->planTier)

{{ $plan->planTier->name }} Tier

@endif

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

@if($plan->description)

{{ $plan->description }}

@endif
@if($features) @else

No features configured for this plan.

@endif @if($hasTrial && $trialConfig)
{{ $trialConfig['duration_days'] }}-day free trial
@if($trialConfig['requires_payment_method'])

Payment method required

@endif
@endif
@foreach($providers as $provider) @if($provider === 'stripe') @if($hasTrial && $trialConfig) Start Free Trial @endif Pay with Card @elseif($provider === 'lemon_squeezy') Pay with Lemon Squeezy @elseif($provider === 'polar') Pay with Polar.sh @elseif($provider === 'oxapay') Pay with OxaPay @elseif($provider === 'crypto') Pay with Crypto @elseif($provider === 'activation_key') Activate via Activation Key @endif @endforeach