{{ __('Users') }}

@foreach ($users as $index => $user) @endforeach @if ($users->isEmpty()) @endif
# {{ __('Name') }} {{ __('Email') }} {{ __('Joined') }}
{{ $index + 1 }} {{ $user->name }} {{ $user->email }} {{ $user->created_at->format('d M Y') }}
{{ __('No users found.') }}