Per Page:  
@if (count($users) > 0) @foreach ($users as $key => $user) @endforeach
# Name @include('inc._sort-icon', ['field' => 'name']) Email @include('inc._sort-icon', ['field' => 'email']) Action
{{ $key + 1 }}

{{ $user->name }}

{{ $user->email }}
@csrf
{{ $users->links('pagination::bootstrap-5') }}
@else
No user found
@endif