@extends('backend.index') @section('content')
@csrf
@foreach ($roles as $index => $role) @if($role->id != 6) @else @endif @endforeach
ID Group Member(s) Action
{{ $role->id }} {{ $role->name }} @if(isset($role->permissions) && isset($role->permissions['admin_access'])) (has access to the Administration Panel) @endif{{ DB::table('role_users')->where('role_id', $role->id)->count() }}- @if($role->id != 1 && $role->id != 5 && $role->id != 6) @endif
@endsection