{{ __('Manage your subscription and billing information.') }}
{{ __('Your Plan') }}
{{ $currentPlan?->name ?? __('Free') }}
@if($subscription){{ ucfirst($subscription->billing_cycle ?? 'monthly') }} {{ __('billing') }} @if($subscription->current_period_end) · {{ __('Renews') }} {{ $subscription->current_period_end->format('M j, Y') }} @endif
@if($subscription->onTrial()){{ __('Trial ends') }} {{ $subscription->trial_ends_at->diffForHumans() }}
@endif @if($subscription->onGracePeriod()){{ __('Canceled - Access until') }} {{ $subscription->grace_period_ends_at->format('M j, Y') }}
@endif @endif{{ __('No active plan. Subscribe to see usage data.') }}
{{ $plan->description ?? '' }}
{{ __('Billed') }} @currency($price){{ __('/year') }}
@endif{{ __('No payment history yet') }}
| {{ __('Date') }} | {{ __('Description') }} | {{ __('Amount') }} | {{ __('Status') }} | {{ __('Gateway') }} |
|---|---|---|---|---|
| {{ $payment->created_at->format('M j, Y') }} | {{ $payment->description ?? __('Payment') }} | @currency($payment->amount) | @if($payment->status === 'succeeded') @endif {{ ucfirst($payment->status) }} | {{ ucfirst($payment->gateway_slug ?? 'stripe') }} |