Globale Suche

@if($q) ZurĂĽcksetzen @endif
@if($q && strlen($q) < 2)

Mindestens 2 Zeichen eingeben.

@elseif($q) @php $totalFound = $devices->total() + $hostResults->count(); @endphp

{{ $totalFound }} Ergebnis(se) für „{{ $q }}" über alle Segmente

{{-- Ergebnisse aus network_devices (getracked) --}} @if($devices->count() > 0)
Geräte (bekannt)
@foreach($devices as $device) @endforeach
Status IP-Adresse MAC-Adresse Hostname / Bezeichnung Hersteller Zuletzt gesehen
{{ $device->current_ip }} {{ $device->mac_address ?? '—' }} @if($device->label) {{ $device->label }} ({{ $device->hostname }}) @else {{ $device->hostname ?? $device->netbios_name ?? '—' }} @endif @if($device->netbios_name && $device->netbios_name !== $device->hostname) NetBIOS: {{ $device->netbios_name }} @endif {{ $device->mac_vendor ?? '—' }} {{ $device->last_seen_at?->format('d.m.Y H:i') ?? '—' }} Detail →
@if($devices->hasPages())
{{ $devices->links() }}
@endif
@endif {{-- Ergebnisse aus network_hosts (Scan-Treffer ohne Device-Eintrag) --}} @if($hostResults->count() > 0)
In Scan-Verlauf gefunden Noch kein Geräteeintrag — wird beim nächsten Scan angelegt
@foreach($hostResults as $host) @endforeach
Status IP-Adresse MAC-Adresse Hostname Hersteller Segment Letzter Scan
{{ $host->ip_address }} {{ $host->mac_address ?? '—' }} {{ $host->hostname ?? '—' }} {{ $host->mac_vendor ?? '—' }} {{ $host->segment_name ?? '—' }} {{ \Carbon\Carbon::parse($host->scan_time)->format('d.m.Y H:i') }} Scan →
@endif @if($totalFound === 0)
Keine Ergebnisse für „{{ $q }}" gefunden.
@endif @endif