Subscription Plans

Manage subscription plans for all users

@if(session('success'))
{{ session('success') }}
@endif
TOTAL

{{ number_format($totalUsers) }}

Total Users

@if($userGrowth >= 0) @else @endif {{ abs($userGrowth) }}% vs last month
ACTIVE

{{ number_format($activePlans) }}

Active Plans

@if($activePlanGrowth >= 0) @else @endif {{ abs($activePlanGrowth) }}% vs last month
EXPIRED

{{ number_format($expiredPlans) }}

Expired Plans

@if($expiredPlanGrowth >= 0) @else @endif {{ abs($expiredPlanGrowth) }}% vs last month
NONE

{{ number_format($noPlanUsers) }}

No Plan

All Users

Manage subscription plans for users

@forelse($users as $user) @empty @endforelse
ID User Email 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 found

All users are admins or there are no users yet.

@if($users->hasPages())
{{ $users->links() }}
@endif