| {{ strtoupper($user->name) }} |
{{ $user->email }} |
{{ $user->phone_number }} |
{{ strtoupper($user->branch->name ?? 'N/A') }} |
{{ strtoupper($user->department->name ?? 'N/A') }} |
{{ strtoupper(optional($user->rank()->first())->name ?? 'N/A') }} |
{{ strtoupper($user->roles->first()->name ?? 'N/A') }} |
{{ strtoupper($user->status === 'active' ? 'ACTIVE' : 'INACTIVE') }}
|
{{ $user->last_login ? strtoupper($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)