{{ __('Manage Plans') }}

Add New Plan
@if($business->trial_enabled)

Trial Status

@if($business->is_trial_active)

Your trial is active and will expire in {{ $business->trial_days_remaining }} days.

@else

Your trial has expired. Please select a plan to continue using the service.

@endif
Days Remaining
{{ $business->trial_days_remaining }}
@endif

Current Plans

@if($plans->where('active', true)->count() > 0)
@foreach($plans->where('active', true) as $plan) @endforeach
Plan ID Seats Price Start Date End Date Status Actions
{{ $plan->id }}
{{ $plan->plan_quantity }}
${{ number_format($plan->total_price_in_dollars, 2) }}
${{ number_format($plan->price_per_plan_in_dollars, 2) }} per seat
{{ $plan->starts_at->format('M d, Y') }}
@if($plan->ends_at) {{ $plan->ends_at->format('M d, Y') }} @else N/A @endif
Active
View Renew
@else

No active plans

Get started by adding a new plan.

@endif
@if($plans->where('active', false)->count() > 0)

Plan History

@foreach($plans->where('active', false) as $plan) @endforeach
Plan ID Seats Price Start Date End Date Status
{{ $plan->id }}
{{ $plan->plan_quantity }}
${{ number_format($plan->total_price_in_dollars, 2) }}
${{ number_format($plan->price_per_plan_in_dollars, 2) }} per seat
{{ $plan->starts_at->format('M d, Y') }}
@if($plan->ends_at) {{ $plan->ends_at->format('M d, Y') }} @else N/A @endif
Inactive
@endif