{{ __('Family Subscription Details') }}

Back to Family Subscriptions

Family Subscription Information

Primary Account Holder: {{ $subscription->user->name }}

Email: {{ $subscription->user->email }}

Plan: {{ $subscription->plan->name }}

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

Start Date: {{ $subscription->starts_at->format('M d, Y') }}

End Date: {{ $subscription->ends_at ? $subscription->ends_at->format('M d, Y') : 'N/A' }}

Family Plan Status

Total Dependents
{{ $dependentCount }}/{{ $maxDependents }}
@if($canAddMore) {{ $maxDependents - $dependentCount }} slots available @else Limit reached @endif
Younger Dependents (≤23)
{{ $youngerDependentCount }}/{{ $maxYoungerDependents }}
@if($canAddYoungerDependent) {{ $maxYoungerDependents - $youngerDependentCount }} slots available @else Limit reached @endif
Older Dependents (24+)
{{ $olderDependentCount }}/{{ $maxOlderDependents }}
@if($canAddOlderDependent) {{ $maxOlderDependents - $olderDependentCount }} slot available @else Limit reached @endif
Add Dependent Override Age Restrictions
@if($subscription->hasFeature('admin_overrides.applied_at'))

Admin Overrides Applied

Applied by: {{ $subscription->getFeature('admin_overrides.applied_by') }}
Applied at: {{ \Carbon\Carbon::parse($subscription->getFeature('admin_overrides.applied_at'))->format('M d, Y H:i') }}
Max Total Dependents: {{ $subscription->getFeature('admin_overrides.max_total_dependents', 5) }}
Max Older Dependents: {{ $subscription->getFeature('admin_overrides.max_older_dependents', 1) }}
Max Younger Dependents: {{ $subscription->getFeature('admin_overrides.max_younger_dependents', 4) }}
Reason: {{ $subscription->getFeature('admin_overrides.reason') }}

@endif

Family Members

@cell('date_of_birth', $item) {{ $item->date_of_birth ? $item->date_of_birth->format('M d, Y') : 'N/A' }} @if($item->date_of_birth) ({{ $item->date_of_birth->age }} years old) @endif @endcell @cell('relationship_type', $item) {{ ucfirst($item->relationship_type) }} @endcell @cell('actions', $item)
@endcell