Current Plan

Active package, usage, and renewal status.

@if($subscription) Active @else No active plan @endif

{{ $subscription->plan->name ?? 'No active plan' }}

@php $limit = max((int) ($subscription->plan->work_limit ?? 0), 1); $used = (int) ($subscription->usage_count ?? 0); @endphp

Usage: {{ $used }} / {{ $subscription->plan->work_limit ?? 0 }} work items @if($subscription?->ends_at) | Ends {{ $subscription->ends_at->format('M j, Y') }} @endif

@if($pendingPayments->isNotEmpty())

Pending Plan Payments

Upload proof from Payments page to activate.

Upload Proof
@foreach($pendingPayments as $payment)@endforeach
PlanAmountStatus
{{ $payment->plan->name ?? '-' }}{{ number_format($payment->amount) }}Pending Proof / Review
@endif
@foreach ($plans as $plan)
@csrf

{{ $plan->name }}

{{ $plan->price > 0 ? number_format($plan->price) : 'Custom Quote' }}

{{ $plan->work_limit }} work limit / {{ $plan->duration_days }} days

    @foreach(($plan->features ?: []) as $feature)
  • {{ $feature }}
  • @endforeach
@endforeach

Subscription History

Previous and current plan records.

@forelse($history as $item) @empty @endforelse
PlanStartEndUsageStatus
{{ $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.