{{ __('Family Members') }}

@if($canAddMore) {{ __('Add Family Member') }} @endif

Employee Family Plan Information

Important Information About Family Members

  • As an employee, your plan includes family coverage for up to 5 dependents.
  • Only 1 dependent can be 24 years or older.
  • The remaining dependents must be 23 years old or younger.

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
Adult Dependents (18-23)
{{ $adultDependentCount }}
No specific limit
Included in younger dependents count
Minor Dependents (<18)
{{ $youngerDependentCount - $adultDependentCount }}
Managed by primary account
Included in younger dependents count

Your Employee Family Plan Allows:

  • Total of 5 dependents per employee account
  • Maximum 1 older dependent (24+ years)
  • Maximum 4 younger dependents (23 years or younger)
  • No limit on how many younger dependents can be adults (18-23)
  • Adult dependents (18-23) receive their own login credentials
  • Minor dependents (under 18) are managed by the employee account holder
@if($canAddMore)
You can add {{ $maxDependents - $dependentCount }} more dependent(s) to your plan.
@if(!$canAddYoungerDependent && !$canAddOlderDependent)
You have reached both your younger and older dependent limits.
@elseif(!$canAddYoungerDependent)
Note: You can only add an older dependent (24+) as you've reached your limit of 4 younger dependents.
@elseif(!$canAddOlderDependent)
Note: You can only add younger dependents (23 or younger) as you've reached your limit of 1 older dependent.
@endif @else
You have reached the maximum number of dependents (5) for your plan.
@endif
@if($dependentCount > 0)

Your Family Members

{{ $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 {{ ucfirst($item->relationship_type) }}
@else

No Family Members Added Yet

Add family members to your employee plan to provide them with healthcare coverage.

@if($canAddMore) {{ __('Add Your First Family Member') }} @endif
@endif