{{ __('View All Users') }}

You may view the users for this application by selecting the record from the list below. You may also edit or remove a user by clicking the "Edit" button to the right of the user's name.

@can('create', \App\Models\User::class) Add New User @endcan
S Name E-mail Role @forelse ($users as $user) @can('view', $user) {{ $user->name }} @else {{ $user->name }} @endcan {{ $user->email }} {{ ucfirst($user->role) }} @can('view', $user) View @endcan @empty {{ __('No records have been created.') }} @endforelse {{ $users->links() }}