Netzwerk /

Scan {{ $scan->created_at->format('d.m.Y H:i') }}

{{-- Scan-Info --}}
@foreach(['Subnetz' => $scan->subnet, 'Quelle' => $scan->scanner, 'Gesamt' => $scan->total_hosts, 'Online' => $scan->online_hosts, 'Neue Geräte' => $scan->new_devices] as $label => $val)

{{ $label }}

{{ $val }}

@endforeach
{{-- Host-Tabelle --}}
@foreach($hosts as $host) @endforeach
Status IP-Adresse MAC-Adresse Hostname Hersteller Ping Ports
@if($host->device) {{ $host->ip_address }} @else {{ $host->ip_address }} @endif {{ $host->mac_address ?? '—' }} {{ $host->hostname ?? '—' }} {{ $host->mac_vendor ?? '—' }} {{ $host->ping_ms ? $host->ping_ms . ' ms' : '—' }} {{ $host->ports ?? '—' }}