{{ __('roles.title_index') }}

{{ __('roles.all') }}

@can('create', 'App\Models\Role') {{ __('roles.create') }} @endcan
@foreach($roles as $role) @endforeach
{{ __('roles.th_name') }} {{ __('roles.th_description') }} {{ __('roles.th_users') }} {{ __('roles.th_created') }} {{ __('roles.th_actions') }}
{{ $role->display_name }} {{ Str::limit($role->description, 60) }} {{ number_format($role->users_count) }} {{ $role->created_at->format('Y/m/d') }} @can('update', $role)
@endcan @can('delete', $role) @endcan