2021-08-22 08:15:58 -04:00
|
|
|
@extends('layouts.simple')
|
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
|
|
|
|
2022-03-26 17:36:05 -04:00
|
|
|
@include('settings.parts.navbar', ['selected' => 'users'])
|
2019-02-02 10:49:57 -05:00
|
|
|
|
2019-08-25 10:44:51 -04:00
|
|
|
<main class="card content-wrap">
|
2019-02-02 10:49:57 -05:00
|
|
|
|
2021-05-26 10:19:26 -04:00
|
|
|
<div class="flex-container-row wrap justify-space-between items-center">
|
2019-02-02 10:49:57 -05:00
|
|
|
<h1 class="list-heading">{{ trans('settings.users') }}</h1>
|
2022-10-29 10:23:21 -04:00
|
|
|
<div>
|
2022-10-29 15:52:17 -04:00
|
|
|
<a href="{{ url("/settings/users/create") }}" class="outline button my-none">{{ trans('settings.users_add_new') }}</a>
|
2022-10-29 10:23:21 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p class="text-muted">{{ trans('settings.users_index_desc') }}</p>
|
2019-02-02 10:49:57 -05:00
|
|
|
|
2022-10-29 10:23:21 -04:00
|
|
|
<div class="flex-container-row items-center justify-space-between gap-m mt-m mb-l wrap">
|
2021-05-26 10:19:26 -04:00
|
|
|
<div>
|
|
|
|
<div class="block inline mr-xs">
|
2019-08-04 09:26:39 -04:00
|
|
|
<form method="get" action="{{ url("/settings/users") }}">
|
2019-02-02 10:49:57 -05:00
|
|
|
<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>
|
2022-10-29 10:23:21 -04:00
|
|
|
</div>
|
|
|
|
<div class="justify-flex-end">
|
|
|
|
@include('common.sort', ['options' => [
|
|
|
|
'name' => trans('common.sort_name'),
|
|
|
|
'email' => trans('auth.email'),
|
|
|
|
'created_at' => trans('common.sort_created_at'),
|
|
|
|
'updated_at' => trans('common.sort_updated_at'),
|
|
|
|
'last_activity_at' => trans('settings.users_latest_activity'),
|
|
|
|
], 'order' => $listDetails['order'], 'sort' => $listDetails['sort'], 'type' => 'users'])
|
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
|
|
|
|
2022-10-29 10:23:21 -04:00
|
|
|
<div class="item-list">
|
2019-02-02 10:49:57 -05:00
|
|
|
@foreach($users as $user)
|
2022-10-29 10:25:28 -04:00
|
|
|
@include('users.parts.users-list-item', ['user' => $user])
|
2019-02-02 10:49:57 -05:00
|
|
|
@endforeach
|
2022-10-29 10:23:21 -04:00
|
|
|
</div>
|
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
|