{{ __('Family Plan Information') }}

Family Plan Information

You are a dependent on a family plan. The primary account holder manages this plan.

Family Plan Structure

Your Family Plan Allows:

  • Total of 5 dependents per primary account holder
  • Maximum 1 older dependent (24+ years)
  • Maximum 1 adult dependent (18-23 years)
  • Remaining slots can be filled with minor dependents (under 18 years)
Total Dependents
{{ $subscription->primarySubscription->getDependentCount() }}/5
Adult Dependents (18-23)
{{ $subscription->primarySubscription->getAdultDependentCount() }}/1
Older Dependents (24+)
{{ $subscription->primarySubscription->getOlderDependentCount() }}/1

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' }}

Primary Account Holder: {{ $primaryUser->name }}

Email: {{ $primaryUser->email }}

Phone: {{ $primaryUser->phone ?: 'N/A' }}

Family Members

@foreach($familyMembers as $member) dependent_user_id === Auth::id()) class="bg-primary bg-opacity-10" @endif> @endforeach
Name Email Relationship Date of Birth
{{ $member->dependentUser->name }} @if($member->dependent_user_id === Auth::id()) You @endif {{ $member->dependentUser->email ?: 'N/A' }} {{ ucfirst($member->relationship_type) }} {{ $member->date_of_birth ? $member->date_of_birth->format('M d, Y') : 'N/A' }} @if($member->date_of_birth) ({{ $member->date_of_birth->age }} years old) @endif