@extends('layouts.admin') @section('title', 'Role Architecture') @section('page_title', 'Access Control') @section('content')
Define and govern system access tiers.
| Identifier / Designation | Authorized Capabilities | Actions |
|---|---|---|
|
{{ strtoupper(substr($role->name, 0, 2)) }}
{{ $role->name }}
ID:
#{{ str_pad($role->id, 3, '0', STR_PAD_LEFT) }}
|
@php $perms = $role->permissions->take(8); @endphp
@foreach($perms as $permission)
{{ $permission->name }}
@endforeach
@if($role->permissions->count() > 8)
+{{ $role->permissions->count() - 8 }} MORE
@endif
@if($role->permissions->isEmpty())
No permissions assigned
@endif
|
|
No Active RolesEstablish system hierarchies by creating your first organizational role. |
||