@foreach ($items as $key => $item) @endforeach
@lang('SL') @lang('Name') @lang('Branch') @lang('Email') @lang('User Type') @lang('Role')
{{ ($items->currentpage() - 1) * $items->perpage() + $key + 1 }} {{ $item->name }}
{{ $item->branch }} {{ $item->email }} {{ $item->user_type }} @foreach ($item->getRoleNames() as $role) {{ $role }} @endforeach
@if ($items instanceof \Illuminate\Pagination\LengthAwarePaginator) {{ $items->links('layouts.paginate') }} @endif