@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('Registered users')) @section('content_header')

{{__('Administration')}} / {{__('Users')}}

@stop @section('js') @stop @section('content')

{{ $numUsers }}

{{__('Registered users')}}

{{$bannedUserCount}}

{{__('Suspended users')}}

{{__('Registered users')}}

@csrf
@if (!$users->isEmpty()) @foreach($users as $user) @endforeach
{{__('Name')}} {{ __('Role') }} {{__('Registration date')}} {{__('Actions')}}
{{$user->name}} @if ($user->hasRole('reviewer')) {{ __('Staff') }} @else {{ __('Member') }} @endif {{$user->created_at}} {{ __('Manage') }}
@else
{{__('There are no registered users!')}}

{{__('Registered users are those without a staff role in the team management application.')}}

@endif
@stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop