@extends('layouts.admin') @section('content')
{{ __('Define and manage security roles for the system.') }}
| {{ __('Role Name') }} | {{ __('Type') }} | {{ __('Users') }} | {{ __('Actions') }} |
|---|---|---|---|
|
{{ $role->name }}
@if($role->is_system)
@endif
|
@if($role->is_system) {{ __('System') }} @else {{ __('Custom') }} @endif | {{ $role->users_count }} |
@if(!$role->is_system)
@else
{{ __('Protected') }}
@endif
|
|
{{ __('No roles found.') }} |
|||