Choose Your Plan
@if($planTiers && $planTiers->count() > 1)
@foreach($planTiers as $tier)
@endforeach
@endif
@if(isset($plans))
@foreach($plans as $plan)
@php
$providers = $this->getPlanProviders($plan->id);
$features = $this->getPlanFeatures($plan->id);
$hasTrial = $this->planHasTrial($plan->id);
$trialConfig = $this->planHasTrial($plan->id) ? $this->getTrialConfig($plan->id) : null;
$billingCycle = $this->getBillingCycleDisplay($plan);
$isPopularTier = $plan->planTier && $plan->planTier->sort_order > 1;
@endphp
@include('livewire.dashboard.partials.plan-card', [
'plan' => $plan,
'providers' => $providers,
'features' => $features,
'hasTrial' => $hasTrial,
'trialConfig' => $trialConfig,
'billingCycle' => $billingCycle,
'isPopularTier' => $isPopularTier
])
@endforeach
@endif
Have an Activation Key?
Redeem your activation key for instant access to premium features.
@error('activation_key')
{{ $message }}
@enderror
@if (session()->has('success'))
{{ session('success') }}
@endif
@if (session()->has('error'))
{{ session('error') }}
@endif