@extends('admin-layouts.master') @section('title', 'Role Management') @section('content')
Manage system roles and permissions
| Role | Permissions | Users | Status | Actions |
|---|---|---|---|---|
{{ $role->name }}@if($role->description){{ Str::limit($role->description, 50) }} @endif |
{{ $role->permissions->count() }} permissions | {{ $role->users->count() }} users | @if($role->is_active ?? true) Active @else Inactive @endif |
There are no roles configured in the system.
@can('role.create') Create First Role @endcan