@section('title','ROLES')

Seguridad / Roles

Roles

{{ \DB::table('roles')->count() }}

Total Registrados
Roles inactivos

{{ \DB::table('roles')->where('status','<>',1)->count() }}

Total inactivos
Roles activos

{{ \DB::table('roles')->where('status',1)->count() }}

Total de activos
Nuevo role

@foreach ($history as $item) @endforeach
id Ciudad Permisos Estado Opciones
{{ $loop->iteration }} {{ $item->name }} {{ count($item->permissions) }} @if ($item->status != 0) @else @endif

Mostrando {{ $history->count() }} registros de {{$history->total() }} totales

{{ $history->links('vendor.livewire.bootstrap') }}