{{ __('Granular access control for roles, permissions, menu visibility, and user assignments.') }}
| {{ __('Actions') }} | {{ __('Role') }} | {{ __('Description') }} | {{ __('Created At') }} | {{ __('Updated At') }} | {{ __('Created By') }} | {{ __('Updated By') }} |
|---|---|---|---|---|---|---|
|
{{ $role->name }}
{{ $role->slug }}
|
@php
$roleDescription = $role->description ?: __('No description');
@endphp
@if($role->description)
@else
{{ $roleDescription }}
@endif
|
@if($role->created_at)
{{ $role->created_at->copy()->utc()->format('Y-m-d H:i:s') }} {{ __('UTC') }}
@else
-
@endif
|
@if($role->updated_at)
{{ $role->updated_at->copy()->utc()->format('Y-m-d H:i:s') }} {{ __('UTC') }}
@else
-
@endif
|
@if($role->creator)
{{ $role->creator->username }}
{{ $role->creator->email }}
@else
-
@endif
|
@if($role->updater)
{{ $role->updater->username }}
{{ $role->updater->email }}
@else
-
@endif
|
|
| {{ __('No roles found yet.') }} | ||||||
| {{ __('Actions') }} | {{ __('Permission') }} | {{ __('Description') }} | {{ __('Route Patterns') }} | {{ __('Created At') }} | {{ __('Updated At') }} | {{ __('Created By') }} | {{ __('Updated By') }} |
|---|---|---|---|---|---|---|---|
|
{{ $permission->name }}
{{ $permission->slug }}
|
@php
$permissionDescription = $permission->description ?: __('No description');
@endphp
@if($permission->description)
@else
{{ $permissionDescription }}
@endif
|
@php $permissionRoutePatterns = $permission->route_patterns ?? []; $patternCount = count($permissionRoutePatterns); @endphp @if($patternCount > 0) @else {{ __('No route patterns') }} @endif | @if($permission->created_at) {{ $permission->created_at->copy()->utc()->format('Y-m-d H:i:s') }} {{ __('UTC') }} @else-@endif |
@if($permission->updated_at) {{ $permission->updated_at->copy()->utc()->format('Y-m-d H:i:s') }} {{ __('UTC') }} @else-@endif |
@if($permission->creator) {{ $permission->creator->username }} {{ $permission->creator->email }}@else-@endif |
@if($permission->updater) {{ $permission->updater->username }} {{ $permission->updater->email }}@else-@endif |
|
| {{ __('No permissions found yet.') }} | |||||||
| {{ __('Actions') }} | {{ __('User') }} | {{ __('Level') }} | {{ __('Status') }} | {{ __('Roles') }} | {{ __('Created At') }} | {{ __('Updated At') }} | {{ __('Created By') }} | {{ __('Updated By') }} |
|---|---|---|---|---|---|---|---|---|
|
{{ $user->username }}
{{ $user->email }}
|
{{ __($user->level) }} | {{ __($user->status) }} |
@forelse($user->roles as $role)
{{ $role->name }}
@empty
{{ __('No role assigned') }}
@endforelse
@if(!empty($userPlanWarnings[$user->id] ?? []))
|
@if($user->created_at) {{ \Illuminate\Support\Carbon::parse($user->created_at)->utc()->format('Y-m-d H:i:s') }} {{ __('UTC') }} @else-@endif |
@if($user->updated_at) {{ \Illuminate\Support\Carbon::parse($user->updated_at)->utc()->format('Y-m-d H:i:s') }} {{ __('UTC') }} @else-@endif |
@if($user->creator_username) {{ $user->creator_username }} {{ $user->creator_email }}@else-@endif |
@if($user->updater_username) {{ $user->updater_username }} {{ $user->updater_email }}@else-@endif |
|
| {{ __('No users found yet.') }} | ||||||||
{{ __('Contact us for support, feature requests, bug fixes, or project collaboration.') }}