Manage Subscription
@if (session('error'))
{{ session('error') }}
@endif
Select a Plan
Choose an action
@if (!$subscription)
Subscribe to a New Plan
@else
Upgrade Current Plan
@endif @foreach ($plans as $plan)
{{ $plan->Name }} ({{ $plan->Price }} {{ $plan->currency->Currency_code ?? 'USD' }})
@endforeach
{{ !$subscription ? 'Subscribe Now' : 'Upgrade Now' }}