System Overview
Welcome, {{ $admin->name }}. Monitoring active directories, credentials, and SSO logins.
Total Registrations
{{ $stats['total_users'] }}
Administrators
{{ $stats['admins_count'] }}
Blocked Accounts
{{ $stats['blocked_count'] }}
Registered Apps
{{ $stats['apps_count'] }}
System Roles
{{ $stats['roles_count'] }}
-
@foreach($errors->all() as $error)
- {{ $error }} @endforeach
{{ session('error') }}
{{ session('success') }}
User Accounts Directory
Showing registered system entities and block controls
| User Account | Assigned Role | Authentication Type | Linked On | Operations |
|---|---|---|---|---|
|
@if($usr->avatar)
{{ strtoupper(substr($usr->name, 0, 1)) }}
@endif
{{ $usr->name }}
@if($usr->is_blocked)
Blocked
@else
Active
@endif
{{ $usr->email }}
|
@if($usr->id !== $admin->id)
@endif
@if($usr->role === 'admin')
Admin
@else
User Portal
@endif
@if($usr->roles->isNotEmpty())
@foreach($usr->roles as $role)
@if(strtolower($role->name) === 'admin')
@continue
@endif
{{ $role->name }}
@endforeach
@elseif($usr->role !== 'admin')
{{ $defaultRoleName }}
@endif
@if($usr->overrides->isNotEmpty())
@foreach($usr->overrides as $ov)
@if($ov->type === 'allow')
+ {{ $ov->app->name ?? 'App' }}
@else
− {{ $ov->app->name ?? 'App' }}
@endif
@endforeach
@endif
|
@if($usr->microsoft_id) Microsoft OAuth @else Local Password @endif | {{ $usr->created_at ? $usr->created_at->format('Y-m-d H:i') : 'N/A' }} | @if($usr->id !== $admin->id) @if($usr->isAdmin()) @else @endif @else You (Admin) @endif |
| No registered accounts found in the database. | ||||
Manage System Services
| Service | Tag | Action |
|---|---|---|
|
@if($app->logo)
{{ strtoupper(substr($app->name, 0, 1)) }}
@endif
{{ $app->name }}
|
{{ $app->tag }} |
|
| No registered service apps. | ||
Manage Roles & Services
| Role Name | Assigned Services | Actions |
|---|---|---|
|
{{ $role->name }}
@if($role->description)
{{ $role->description }}
@endif
|
@forelse($role->apps as $app)
{{ $app->name }}
@empty
None
@endforelse
|
|
| No roles defined. | ||