| Date/Time |
IP Address |
Login Type |
Email/Username |
Status |
Browser |
Platform |
@forelse($allAttempts as $attempt)
| {{ $attempt->created_at->format('Y-m-d H:i:s') }} |
{{ $attempt->ip_address }} |
@if($attempt->login_type == 0 || $attempt->login_type == 3)
Location
@elseif($attempt->login_type == 1)
User
@elseif($attempt->login_type == 2)
Head Office
@else
Unknown
@endif
|
{{ $attempt->attempted_email ?? 'N/A' }} |
@if($attempt->is_active == 1)
Success
@else
Failed
@endif
|
{{ $attempt->browser ?? 'N/A' }} |
{{ $attempt->platform ?? 'N/A' }} |
@empty
| No login attempts found |
@endforelse
{{ $allAttempts->links() }}