5 @include('settings/navbar', ['selected' => 'roles'])
7 <div class="container small">
9 <div class="row action-header">
10 <div class="col-sm-8">
11 <h1>{{ trans('settings.role_user_roles') }}</h1>
13 <div class="col-sm-4">
15 <a href="{{ baseUrl("/settings/roles/new") }}" class="button float right pos"><i class="zmdi zmdi-lock-open"></i>{{ trans('settings.role_create') }}</a>
21 <th>{{ trans('settings.role_name') }}</th>
23 <th class="text-center">{{ trans('settings.users') }}</th>
25 @foreach($roles as $role)
27 <td><a href="{{ baseUrl("/settings/roles/{$role->id}") }}">{{ $role->display_name }}</a></td>
28 <td>{{ $role->description }}</td>
29 <td class="text-center">{{ $role->users->count() }}</td>