@if ($plan['featured'] != 0)
@endif
{{ $plan->name }}
{{ $plan->description }}
@if ($plan->is_free)
@else
/{{ 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') }}
No plans available for the selected billing period.
@endforelse