User Management
Manage registered users and their approval status
Registered Users
| Name | Company | Role | Plan | Status | Actions | |
|---|---|---|---|---|---|---|
| Name | Company | Role | Plan | Status | Actions | |
| {{ $user->userDetail?->first_name }} {{ $user->userDetail?->last_name }} | {{ $user->email }} | {{ $user->userDetail?->company ?? 'N/A' }} |
@if ($user->role === 1)
Admin
@else
Client
@endif
|
@if ($user->userDetail?->status === 'accepted') @else - @endif |
@if ($user->userDetail?->status === 'accepted')
Accepted
@elseif($user->userDetail?->status === 'rejected')
Rejected
@else
Pending
@endif
|
@if ($user->userDetail?->status !== 'accepted') @endif @if ($user->userDetail?->status !== 'accepted' && $user->userDetail?->status !== 'rejected') @endif |
| No registered users found. | ||||||