2020-05-03 03:10:33 +00:00
|
|
|
@extends('adminlte::page')
|
|
|
|
|
2020-09-01 11:43:39 +00:00
|
|
|
@section('title', config('app.name') . ' | ' . __('messages.staff.members'))
|
2020-05-03 03:10:33 +00:00
|
|
|
|
|
|
|
@section('content_header')
|
|
|
|
|
2020-09-01 11:43:39 +00:00
|
|
|
<h4>{{__('messages.adm')}} / {{__('messages.staff.members')}}</h4>
|
2020-05-03 03:10:33 +00:00
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col">
|
|
|
|
<div class="small-box bg-info">
|
|
|
|
<div class="inner">
|
2020-06-26 23:32:33 +00:00
|
|
|
<h3>{{$users->count()}}</h3>
|
2020-05-03 03:10:33 +00:00
|
|
|
|
2020-09-01 11:43:39 +00:00
|
|
|
<p>{{__('messages.staff.active_sm')}}</p>
|
2020-05-03 03:10:33 +00:00
|
|
|
</div>
|
|
|
|
<div class="icon">
|
|
|
|
<i class="fa fa-user-tie"></i>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col">
|
|
|
|
|
|
|
|
<div class="card bg-gray-dark">
|
|
|
|
|
|
|
|
<div class="card-header bg-indigo">
|
|
|
|
|
2020-09-01 11:43:39 +00:00
|
|
|
<div class="card-title"><h4 class="text-bold">{{__('messages.staff.m_listing')}}</h4></div>
|
2020-05-03 03:10:33 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
|
|
|
<table class="table table-borderless table-active">
|
|
|
|
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>#</th>
|
2020-09-01 11:43:39 +00:00
|
|
|
<th>{{__('messages.staff.f_name')}}</th>
|
2020-06-26 23:32:33 +00:00
|
|
|
<th>UUID</th>
|
2020-09-01 11:43:39 +00:00
|
|
|
<th>{{__('messages.staff.rank')}}</th>
|
|
|
|
<th>{{__('messages.contactlabel_email')}}</th>
|
|
|
|
<th>{{__('messages.reusable.status')}}</th>
|
|
|
|
<th>{{__('messages.reusable.join_date')}}</th>
|
|
|
|
<th>{{__('messages.reusable.actions')}}</th>
|
2020-05-03 03:10:33 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
|
2020-06-26 23:32:33 +00:00
|
|
|
@foreach($users as $user)
|
|
|
|
|
|
|
|
<tr>
|
2020-06-27 18:15:33 +00:00
|
|
|
<td>{{ $user->id }}</td>
|
2020-06-26 23:32:33 +00:00
|
|
|
<td>{{$user->name}}</td>
|
|
|
|
<td>{{UUID::toUsername($user->uuid)}}</td>
|
|
|
|
<td>
|
|
|
|
@foreach($user->roles as $role)
|
|
|
|
<span class="badge badge-info badge-sm">{{$role->name}}</span>
|
|
|
|
@endforeach
|
|
|
|
</td>
|
2020-06-27 18:15:33 +00:00
|
|
|
<td>{{ $user->email }}</td>
|
2020-09-01 11:43:39 +00:00
|
|
|
<td><span class="badge badge-success">{{__('messages.players.active')}}</span></td>
|
2020-06-26 23:32:33 +00:00
|
|
|
<td>{{$user->created_at}}</td>
|
|
|
|
<td>
|
|
|
|
<button type="button" class="btn btn-sm btn-success mr-2" onclick="window.location.href='{{route('showSingleProfile', ['user' => $user->id])}}'"><i class="fa fa-eye"></i></button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
@endforeach
|
2020-06-27 18:15:33 +00:00
|
|
|
|
2020-05-03 03:10:33 +00:00
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-footer">
|
|
|
|
|
2020-09-01 11:43:39 +00:00
|
|
|
<button type="button" class="btn btn-outline-primary" onclick="window.location.href='{{route("registeredPlayerList")}}'">{{__('messages.players.reg_players_staff')}}</button>
|
2020-05-03 03:10:33 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|
2020-07-16 05:46:20 +00:00
|
|
|
|
|
|
|
@section('footer')
|
|
|
|
@include('breadcrumbs.dashboard.footer')
|
|
|
|
@stop
|