{{ __('Family Subscriptions Management') }}

Family Subscriptions

View Reports

Family Plan Management

This section allows administrators to manage family subscriptions, including:

  • Viewing all family subscriptions in the system
  • Managing dependents for each family subscription
  • Overriding age restrictions when necessary
  • Viewing reports on family plan usage and demographics
@cell('starts_at', $subscription) {{ $subscription->starts_at->format('M d, Y') }} @endcell @cell('ends_at', $subscription) {{ $subscription->ends_at ? $subscription->ends_at->format('M d, Y') : 'N/A' }} @endcell @cell('status', $subscription) @php $statusClasses = [ 'active' => 'badge-success', 'inactive' => 'badge-warning', 'cancelled' => 'badge-error', 'expired' => 'badge-error', 'pending_payment' => 'badge-info', ]; $class = $statusClasses[$subscription->status] ?? 'badge-secondary'; @endphp {{ ucfirst($subscription->status) }} @endcell @cell('actions', $subscription)
@endcell