{{ __('dashboard.Sessions') }}

{{ __('dashboard.Active logins across the workspace.') }}

@if ($sessions->isEmpty())

{{ __('dashboard.No active sessions.') }}

@else {{ __('dashboard.Email') }} {{ __('dashboard.User type') }} {{ __('dashboard.Connection') }} {{ __('dashboard.Last activity') }} @foreach ($sessions as $row) @php $agent = filled($row->user_agent) ? $row->user_agent : '—'; $isCurrent = $row->isCurrent(); @endphp {{ $row->user?->email ?? '—' }} {{ $row->user?->accessRole?->title ?? __('dashboard.Unassigned') }}

{{ $agent }}

@if (filled($row->ip_address))

{{ $row->ip_address }}

@endif
{{ $row->lastActivityAt()->diffForHumans() }} @if ($isCurrent) {{ __('dashboard.This device') }} @endif
@endforeach
@endif