{{-- Segment-Info --}}

Subnetz

{{ $segment->subnet }}

VLAN

{{ $segment->vlan_id ? 'VLAN ' . $segment->vlan_id : '—' }}

Status

{{ $segment->active ? 'Aktiv' : 'Inaktiv' }}

Scans gesamt

{{ $scans->total() }}

@if($latestScan)

Letzter Scan

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

Online / Gesamt

{{ $latestScan->online_hosts }} / {{ $latestScan->total_hosts }}

Neue Geräte

{{ $latestScan->new_devices }}

@endif {{-- Scan-Historie --}}

Scan-Historie

@forelse($scans as $scan) @empty @endforelse
Datum Scanner Gesamt Online Neu Geändert
{{ $scan->created_at->format('d.m.Y H:i') }} {{ $scan->scanner ?? '—' }} {{ $scan->total_hosts }} {{ $scan->online_hosts }} {{ $scan->new_devices }} {{ $scan->changed_devices }} Details →
Noch keine Scans für dieses Segment.
@if($scans->hasPages())
{{ $scans->links() }}
@endif