Role: {{ $role->name }} @unless($role->is_system ?? false) Edit Role @endunless
{{-- MAIN --}}
{{-- ROLE SUMMARY --}}

{{ $role->name }}

@if($role->is_system ?? false) System Role @endif
Created {{ $role->created_at?->format('d M Y') }}

{{ $users->count() }}
Users Assigned
{{ $role->permissions->count() }}
Permissions
{{ $permissionGroups->count() }}
Permission Groups
{{-- PERMISSIONS --}}

Permissions

@foreach($permissionGroups as $group => $permissions)
{{ $group }}
@foreach($permissions as $permission) @endforeach
Permission Description Used by Roles
{{ $permission->label }}
{{ $permission->name }}
{{ $permission->description ?? '—' }} {{ $permission->roles_count }}
@endforeach
{{-- USERS --}}

Users with this Role

@if($users->count())
@foreach($users as $user) @endforeach
Name Username Email
{{ $user->name_first }} {{ $user->name_last }} {{ $user->username }} {{ $user->email_address }}
@else
No users currently assigned to this role.
@endif
{{-- SIDEBAR --}}

Role Insights


This page shows everything this role grants access to, who currently has it, and how widely each permission is used.

@if($role->is_system ?? false)
This is a system role. Editing is restricted to prevent accidental privilege escalation.
@endif