| {{ Str::limit($user->name, 20) }} |
{{ Str::limit($user->email, 25) }} |
{{ $user->phone_number }} |
{{ Str::limit($user->branch->name ?? 'N/A', 15) }} |
{{ Str::limit($user->department->name ?? 'N/A', 15) }} |
{{ Str::limit($user->roles->first()->name ?? 'N/A', 10) }} |
{{ $user->status === 'active' ? 'Active' : 'Inactive' }}
|
{{ $user->last_login ? $user->last_login->format('m/d H:i') : 'Never' }} |
{{ $user->login_attempts }}
|
{{ $user->created_at->format('m/d/y') }} |
@if(($index + 1) % 25 == 0 && $index + 1 < $total_count)