| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  | @extends('layouts.simple') | 
					
						
							| 
									
										
										
										
											2015-08-09 03:05:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-27 00:17:04 +08:00
										 |  |  | @section('body') | 
					
						
							| 
									
										
										
										
											2018-05-28 17:33:38 +08:00
										 |  |  |     <div class="container small"> | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         <div class="py-m"> | 
					
						
							| 
									
										
										
										
											2021-08-22 20:15:58 +08:00
										 |  |  |             @include('settings.parts.navbar', ['selected' => 'users']) | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 22:44:51 +08:00
										 |  |  |         <main class="card content-wrap"> | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-26 22:19:26 +08:00
										 |  |  |             <div class="flex-container-row wrap justify-space-between items-center"> | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  |                 <h1 class="list-heading">{{ trans('settings.users') }}</h1> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-26 22:19:26 +08:00
										 |  |  |                 <div> | 
					
						
							|  |  |  |                     <div class="block inline mr-xs"> | 
					
						
							| 
									
										
										
										
											2019-08-04 21:26:39 +08:00
										 |  |  |                         <form method="get" action="{{ url("/settings/users") }}"> | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  |                             @foreach(collect($listDetails)->except('search') as $name => $val) | 
					
						
							|  |  |  |                                 <input type="hidden" name="{{ $name }}" value="{{ $val }}"> | 
					
						
							|  |  |  |                             @endforeach | 
					
						
							|  |  |  |                             <input type="text" name="search" placeholder="{{ trans('settings.users_search') }}" @if($listDetails['search']) value="{{$listDetails['search']}}" @endif> | 
					
						
							|  |  |  |                         </form> | 
					
						
							| 
									
										
										
										
											2017-08-27 00:17:04 +08:00
										 |  |  |                     </div> | 
					
						
							| 
									
										
										
										
											2021-01-17 21:41:43 +08:00
										 |  |  |                     <a href="{{ url("/settings/users/create") }}" class="outline button mt-none">{{ trans('settings.users_add_new') }}</a> | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  |                 </div> | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  |             </div> | 
					
						
							| 
									
										
										
										
											2016-05-22 17:44:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  |             <table class="table"> | 
					
						
							|  |  |  |                 <tr> | 
					
						
							|  |  |  |                     <th></th> | 
					
						
							|  |  |  |                     <th> | 
					
						
							|  |  |  |                         <a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'name']) }}">{{ trans('auth.name') }}</a> | 
					
						
							|  |  |  |                         / | 
					
						
							|  |  |  |                         <a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'email']) }}">{{ trans('auth.email') }}</a> | 
					
						
							|  |  |  |                     </th> | 
					
						
							|  |  |  |                     <th>{{ trans('settings.role_user_roles') }}</th> | 
					
						
							| 
									
										
										
										
											2020-11-21 04:10:18 +08:00
										 |  |  |                     <th class="text-right"> | 
					
						
							| 
									
										
										
										
											2021-01-11 06:43:22 +08:00
										 |  |  |                         <a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'last_activity_at']) }}">{{ trans('settings.users_latest_activity') }}</a> | 
					
						
							| 
									
										
										
										
											2020-11-21 04:10:18 +08:00
										 |  |  |                     </th> | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  |                 </tr> | 
					
						
							|  |  |  |                 @foreach($users as $user) | 
					
						
							| 
									
										
										
										
											2017-08-27 00:17:04 +08:00
										 |  |  |                     <tr> | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  |                         <td class="text-center" style="line-height: 0;"><img class="avatar med" src="{{ $user->getAvatar(40)}}" alt="{{ $user->name }}"></td> | 
					
						
							|  |  |  |                         <td> | 
					
						
							| 
									
										
										
										
											2021-01-17 21:41:43 +08:00
										 |  |  |                             <a href="{{ url("/settings/users/{$user->id}") }}"> | 
					
						
							| 
									
										
										
										
											2021-07-15 03:18:48 +08:00
										 |  |  |                                 {{ $user->name }} | 
					
						
							|  |  |  |                                 <br> | 
					
						
							|  |  |  |                                 <span class="text-muted">{{ $user->email }}</span> | 
					
						
							|  |  |  |                                 @if($user->mfa_values_count > 0) | 
					
						
							|  |  |  |                                     <span title="MFA Configured" class="text-pos">@icon('lock')</span> | 
					
						
							|  |  |  |                                 @endif | 
					
						
							| 
									
										
										
										
											2021-01-17 21:41:43 +08:00
										 |  |  |                             </a> | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  |                         </td> | 
					
						
							|  |  |  |                         <td> | 
					
						
							|  |  |  |                             @foreach($user->roles as $index => $role) | 
					
						
							| 
									
										
										
										
											2019-08-04 21:26:39 +08:00
										 |  |  |                                 <small><a href="{{ url("/settings/roles/{$role->id}") }}">{{$role->display_name}}</a>@if($index !== count($user->roles) -1),@endif</small> | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  |                             @endforeach | 
					
						
							|  |  |  |                         </td> | 
					
						
							| 
									
										
										
										
											2020-11-21 04:10:18 +08:00
										 |  |  |                         <td class="text-right text-muted"> | 
					
						
							| 
									
										
										
										
											2021-01-11 06:43:22 +08:00
										 |  |  |                             @if($user->last_activity_at) | 
					
						
							|  |  |  |                                 <small title="{{ $user->last_activity_at->format('Y-m-d H:i:s') }}">{{ $user->last_activity_at->diffForHumans() }}</small> | 
					
						
							| 
									
										
										
										
											2020-11-21 04:10:18 +08:00
										 |  |  |                             @endif | 
					
						
							|  |  |  |                         </td> | 
					
						
							| 
									
										
										
										
											2017-08-27 00:17:04 +08:00
										 |  |  |                     </tr> | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  |                 @endforeach | 
					
						
							|  |  |  |             </table> | 
					
						
							| 
									
										
										
										
											2017-08-27 00:17:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-02 23:49:57 +08:00
										 |  |  |             <div> | 
					
						
							|  |  |  |                 {{ $users->links() }} | 
					
						
							| 
									
										
										
										
											2017-08-27 00:17:04 +08:00
										 |  |  |             </div> | 
					
						
							| 
									
										
										
										
											2019-08-25 22:44:51 +08:00
										 |  |  |         </main> | 
					
						
							| 
									
										
										
										
											2017-08-27 00:17:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-09 03:05:30 +08:00
										 |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @stop |