@if ($status === 'verifying')

{{ $this->statusText }}

We're confirming your payment with the provider. This usually takes a few seconds.

Check {{ $pollCount }} of {{ $maxPolls }} • Checking every 30 seconds...

@if ($pollCount > 1)

This is taking longer than expected. Webhook processing may be delayed.

@endif
@endif @if ($status === 'activated')

{{ $this->statusText }}

Your subscription is now active and you have access to all premium features!

@endif @if ($status === 'pending')

{{ $this->statusText }}

Your payment is being processed. You'll receive an email once your subscription is active.

This can take a few minutes. You can check your subscription status from the dashboard.

@endif @if ($status === 'error')

{{ $this->statusText }}

@if ($errorMessage)

{{ $errorMessage }}

@endif

If you continue to see this message, please contact our support team.

@endif @if ($subscription)

Subscription Details

Subscription ID

{{ $subscription->provider_subscription_id }}

Provider

{{ ucfirst($subscription->provider) }}

Status

{{ ucfirst($subscription->status) }}

Created

{{ $subscription->created_at->format('M j, Y H:i') }}

@endif @if ($this->shouldContinuePolling)
@endif