User List
Manage your Users
Active Users
| User Name | Country | Type | User Type | Transaction ID | Include | Actions | |
|---|---|---|---|---|---|---|---|
| {{ $user->email }} | {{ $user->reg_country == 'ca' ? 'Canada' : 'USA' }} | {{ (isset($user->plan)) ? ucfirst($user->plan->type) : 'N/A' }} | {{ ucfirst($user->role) }} @if($user->role === 'client') @if(isset($user->created_by)) {{ $user->created_by == Auth::user()->id ? '(By Admin)' : '(By Accountant)' }} @else (Direct) @endif @endif | @if($user->role == 'client') View Subscriptions | @else {{ ($user->paypal_subscription_id) ? $user->paypal_subscription_id : 'N/A' }} @endif@if($user->role == 'accountant') {{ ($user->plan) ? $user->plan->no_of_clients : $user->no_of_clients }} clients @else @endif |
@if(isset($user->created_by) && $user->created_by == Auth::user()->id)
@endif
|
Trashed Users
| User Name | Type | User Type | Transaction ID | Include | Recover | Delete | |
|---|---|---|---|---|---|---|---|
| {{ $user->email }} | {{ (isset($user->plan)) ? ucfirst($user->plan->type) : 'N/A' }} | {{ ucfirst($user->role) }} | @if($user->role == 'client') View Subscriptions | @else {{ ($user->paypal_subscription_id) ? $user->paypal_subscription_id : 'N/A' }} @endif@if($user->role == 'accountant') {{ $user->plan->no_of_clients }} clients @else View subscriptions @endif |