2017-08-26 12:17:04 -04:00
|
|
|
@extends('simple-layout')
|
2015-08-08 15:05:30 -04:00
|
|
|
|
2017-08-26 12:17:04 -04:00
|
|
|
@section('body')
|
2018-05-28 05:33:38 -04:00
|
|
|
<div class="container small">
|
2019-02-02 10:49:57 -05:00
|
|
|
|
|
|
|
<div class="py-m">
|
2019-02-03 08:45:45 -05:00
|
|
|
@include('settings.navbar', ['selected' => 'users'])
|
2019-02-02 10:49:57 -05:00
|
|
|
</div>
|
|
|
|
|
2019-08-25 10:44:51 -04:00
|
|
|
<main class="card content-wrap">
|
2019-02-02 10:49:57 -05:00
|
|
|
|
|
|
|
<div class="grid right-focus v-center">
|
|
|
|
<h1 class="list-heading">{{ trans('settings.users') }}</h1>
|
|
|
|
|
|
|
|
<div class="text-right">
|
|
|
|
<div class="block inline mr-s">
|
2019-08-04 09:26:39 -04:00
|
|
|
<form method="get" action="{{ url("/settings/users") }}">
|
2019-02-02 10:49:57 -05: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-26 12:17:04 -04:00
|
|
|
</div>
|
2019-02-02 10:49:57 -05:00
|
|
|
@if(userCan('users-manage'))
|
2019-08-04 09:26:39 -04:00
|
|
|
<a href="{{ url("/settings/users/create") }}" style="margin-top: 0;" class="outline button">{{ trans('settings.users_add_new') }}</a>
|
2019-02-02 10:49:57 -05:00
|
|
|
@endif
|
2016-05-22 05:44:31 -04:00
|
|
|
</div>
|
2019-02-02 10:49:57 -05:00
|
|
|
</div>
|
2016-05-22 05:44:31 -04:00
|
|
|
|
2019-02-02 10:49:57 -05: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-20 15:10:18 -05:00
|
|
|
<th class="text-right">
|
|
|
|
<a href="{{ sortUrl('/settings/users', $listDetails, ['sort' => 'latest_activity']) }}">{{ trans('settings.users_latest_activity') }}</a>
|
|
|
|
</th>
|
2019-02-02 10:49:57 -05:00
|
|
|
</tr>
|
|
|
|
@foreach($users as $user)
|
2017-08-26 12:17:04 -04:00
|
|
|
<tr>
|
2019-02-02 10:49:57 -05:00
|
|
|
<td class="text-center" style="line-height: 0;"><img class="avatar med" src="{{ $user->getAvatar(40)}}" alt="{{ $user->name }}"></td>
|
|
|
|
<td>
|
|
|
|
@if(userCan('users-manage') || $currentUser->id == $user->id)
|
2019-08-04 09:26:39 -04:00
|
|
|
<a href="{{ url("/settings/users/{$user->id}") }}">
|
2019-02-02 10:49:57 -05:00
|
|
|
@endif
|
|
|
|
{{ $user->name }} <br> <span class="text-muted">{{ $user->email }}</span>
|
|
|
|
@if(userCan('users-manage') || $currentUser->id == $user->id)
|
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@foreach($user->roles as $index => $role)
|
2019-08-04 09:26:39 -04:00
|
|
|
<small><a href="{{ url("/settings/roles/{$role->id}") }}">{{$role->display_name}}</a>@if($index !== count($user->roles) -1),@endif</small>
|
2019-02-02 10:49:57 -05:00
|
|
|
@endforeach
|
|
|
|
</td>
|
2020-11-20 15:10:18 -05:00
|
|
|
<td class="text-right text-muted">
|
|
|
|
@if($user->latestActivity)
|
|
|
|
<small title="{{ $user->latestActivity->created_at->format('Y-m-d H:i:s') }}">{{ $user->latestActivity->created_at->diffForHumans() }}</small>
|
|
|
|
@endif
|
|
|
|
</td>
|
2017-08-26 12:17:04 -04:00
|
|
|
</tr>
|
2019-02-02 10:49:57 -05:00
|
|
|
@endforeach
|
|
|
|
</table>
|
2017-08-26 12:17:04 -04:00
|
|
|
|
2019-02-02 10:49:57 -05:00
|
|
|
<div>
|
|
|
|
{{ $users->links() }}
|
2017-08-26 12:17:04 -04:00
|
|
|
</div>
|
2019-08-25 10:44:51 -04:00
|
|
|
</main>
|
2017-08-26 12:17:04 -04:00
|
|
|
|
2015-08-08 15:05:30 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|