Chronologischer IP-Verlauf

{{ $entries->total() }} Einträge
{{-- Filter --}}
@if(request()->hasAny(['ip','mac','hostname','segment','status','from','to'])) @endif
{{-- Tabelle --}}
@forelse($entries as $entry) @empty @endforelse
Datum / Zeit Status IP-Adresse MAC-Adresse Hostname / Bezeichnung Hersteller Segment Ping
{{ \Carbon\Carbon::parse($entry->scan_time)->format('d.m.Y H:i') }} @if($entry->scanner)
{{ $entry->scanner }} @endif
{{ $entry->status }} @if($entry->device_id) {{ $entry->ip_address }} @else {{ $entry->ip_address }} @endif @if($entry->mac_address) {{ $entry->mac_address }} @else @endif @if($entry->device_label) {{ $entry->device_label }} @if($entry->hostname) ({{ $entry->hostname }}) @endif @else {{ $entry->hostname ?? '—' }} @endif {{ $entry->mac_vendor ?? '—' }} {{ $entry->segment_name ?? '—' }} {{ $entry->ping_ms !== null ? $entry->ping_ms . ' ms' : '—' }}
Keine Einträge gefunden.
@if($entries->hasPages())
{{ $entries->links() }}
@endif
{{-- Auto-Refresh alle 60 Sekunden wenn kein Filter aktiv --}} @unless(request()->hasAny(['ip','mac','hostname','segment','status','from','to'])) @endunless