@include('shared.message')
@if(count($users) == 0)
{{ __('No results found.') }}
@else
{{ __('Name') }}
{{ __('Email') }}
{{ __('Status') }}
@foreach($users as $user)
{{ $user->email }}
@if($user->trashed())
{{ __('Disabled') }}
@elseif(!$user->email_verified_at)
{{ __('Pending') }}
@else
{{ __('Active') }}
@endif
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $users->firstItem(), 'to' => $users->lastItem(), 'total' => $users->total()]) }}
{{ $users->onEachSide(1)->links() }}
@endif