@forelse ($listresults as $item)
| {{ $loop->iteration + ($listresults->currentPage() - 1) * $listresults->perPage() }} |
{{ $item?->user->name }}
@if ($item?->user->is_premium)
{{ __('labels.premium') }}
@endif
|
{{ $item->logged_in_at?->format('d.m.Y H:i') }} |
{{ $item->logged_out_at?->format('d.m.Y H:i') }} |
{{ $item->duration_seconds }} |
{{-- {{ $item->ip_address }} | --}}
{{-- {{ $item->created_at?->format('d.m.Y H:i') }} | --}}
|
@empty
|
{{ __('labels.no_sessions_found') }}
|
@endforelse