@extends('layouts.app') @section('title', 'Login History') @section('content')
| User | Login Time | Logout Time | Duration | Device | Browser | IP Address | Status |
|---|---|---|---|---|---|---|---|
|
{{ $h->user->name ?? 'Unknown' }}
{{ $h->user->email ?? '' }}
|
{{ $h->logged_in_at->format('d M Y H:i') }}
{{ $h->logged_in_at->diffForHumans() }}
|
{{ $h->logged_out_at ? $h->logged_out_at->format('d M Y H:i') : '—' }} | {{ $h->session_duration }} | {{ ucfirst($h->device_type ?? 'desktop') }} | {{ $h->browser ?? 'Unknown' }} | {{ $h->ip_address }} | @if($h->is_active)Online @elseEnded@endif |
| No login records found | |||||||