Manage subscription plans for all users
{{ number_format($totalUsers) }}
Total Users
@if($userGrowth >= 0) @else @endif {{ abs($userGrowth) }}% vs last month{{ number_format($activePlans) }}
Active Plans
@if($activePlanGrowth >= 0) @else @endif {{ abs($activePlanGrowth) }}% vs last month{{ number_format($expiredPlans) }}
Expired Plans
@if($expiredPlanGrowth >= 0) @else @endif {{ abs($expiredPlanGrowth) }}% vs last month{{ number_format($noPlanUsers) }}
No Plan
Manage subscription plans for users
| ID | User | Current Plan | Actions | |
|---|---|---|---|---|
| #{{ $user->id }} |
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
|
{{ $user->email }} |
@if($user->subscriptions->where('status', 'active')->count() > 0)
@foreach($user->subscriptions->where('status', 'active') as $subscription)
{{ $subscription->plan_name }} ({{ $subscription->plan_type }})
@endforeach
@else
No Active Plan
@endif
|
|
No users foundAll users are admins or there are no users yet. |
||||