{{ $pricingSettings['theme.pricing_section_title'] ?: 'Default Title' }}

{{ $pricingSettings['theme.pricing_section_subtitle'] ?: 'Default Title' }}

@forelse ($plansFeatures as $plan)
@if ($plan['featured'] != 0)

Most Popular

@endif

{{ $plan->name }}

{{ $plan->description }}

@if ($plan->is_free) Free @else {{ get_base_currency()->format($plan->price) }} /{{ ucfirst($plan->billing_period) }} @endif
    @foreach ($plan['planFeatures'] as $feature) @if ($feature['value'] != 0)
  • {{ $feature['name'] }}: {{ $feature['value'] == '-1' ? 'Unlimited' : number_format($feature['value']) }}
  • @endif @endforeach
@php $user = auth()->user(); $link = route('register', ['plan_id' => $plan->id]); if ($user) { if (is_null($user->tenant_id)) { $link = route('admin.dashboard', ['plan_id' => $plan->id]); } elseif ($user->user_type === 'tenant') { $link = tenant_route('tenant.subscription'); } } @endphp {{ __('get_started_pricing_plans') }}
@empty

No plans available for the selected billing period.

@endforelse