Billing Subscription

Subscription

Manage your subscription plan

Current Subscription

@if($activeSubscription)
{{ $currentPlan }} @if($activeSubscription->cancelled_at) Cancelling @else Active @endif {{ ucfirst($billingCycle) }}
@if($activeSubscription->cancelled_at)
Your subscription will end on {{ $nextBillingDate }}
@else
Next billing date: {{ $nextBillingDate }}
Next payment: {{ $this->formatMoney($nextBillingAmount) }}
@endif
@if($activeSubscription->cancelled_at) Resume Subscription @else Change Plan Cancel Subscription @endif
@else

No active subscription

You're currently on the free plan. Upgrade to unlock premium features.

View Plans
@endif
@if($activeSubscription && $activeSubscription->workspacePackage?->package) @php $package = $activeSubscription->workspacePackage->package; @endphp

Plan Features

@if($package->description)

{{ $package->description }}

@endif
@foreach($package->features as $packageFeature)
{{ $packageFeature->feature?->name ?? $packageFeature->feature_code }} @if($packageFeature->limit_type === 'quota' && $packageFeature->limit_value > 0) ({{ number_format($packageFeature->limit_value) }}) @elseif($packageFeature->limit_type === 'unlimited') (Unlimited) @endif
@endforeach
View Usage Details
@endif @if($subscriptionHistory->isNotEmpty())

Subscription History

@foreach($subscriptionHistory as $subscription)
@if($subscription->isActive())
@elseif($subscription->cancelled_at)
@else
@endif
{{ $subscription->workspacePackage?->package?->name ?? 'Subscription' }}
@if($subscription->current_period_start && $subscription->current_period_end) {{ $subscription->current_period_start->format('j M Y') }} - {{ $subscription->current_period_end->format('j M Y') }} @else Started {{ $subscription->created_at->format('j M Y') }} @endif
@if($subscription->isActive()) @if($subscription->cancelled_at) Cancelling @else Active @endif @else {{ ucfirst($subscription->status) }} @endif
@endforeach
@endif

Questions about your subscription?

Contact the support team at support@host.uk.com and they'll be happy to help.

@if($showCancelModal)

Cancel your subscription?

Your subscription will remain active until {{ $nextBillingDate }}, then your account will be downgraded to the free plan.

Keep Subscription Cancel Subscription
@endif