Active package, usage, and renewal status.
{{ $subscription->plan->name ?? 'No active plan' }}
@php $limit = max((int) ($subscription->plan->work_limit ?? 0), 1); $used = (int) ($subscription->usage_count ?? 0); @endphpUsage: {{ $used }} / {{ $subscription->plan->work_limit ?? 0 }} work items @if($subscription?->ends_at) | Ends {{ $subscription->ends_at->format('M j, Y') }} @endif
Upload proof from Payments page to activate.
| Plan | Amount | Status |
|---|---|---|
| {{ $payment->plan->name ?? '-' }} | {{ number_format($payment->amount) }} | Pending Proof / Review |
Previous and current plan records.
| Plan | Start | End | Usage | Status |
|---|---|---|---|---|
| {{ $item->plan->name ?? '-' }} | {{ $item->starts_at?->format('M j, Y') ?? '-' }} | {{ $item->ends_at?->format('M j, Y') ?? '-' }} | {{ $item->usage_count }} | {{ str($item->status)->headline() }} |
| Plan history appears after activation. | ||||