@extends('layouts.app') @section('title', 'Network Dashboard') @section('content')
Status perangkat jaringan
SNMP tidak aktif. Aktifkan di file .env
Total Devices
{{ count($devices) }}
Online
{{ collect($devices)->where('online', true)->count() }}
Offline
{{ collect($devices)->where('online', false)->count() }}
Last Check
{{ now()->format('H:i:s') }}
| Device | IP | Status | Uptime | Actions |
|---|---|---|---|---|
| {{ $item['device']['name'] }} | {{ $item['device']['host'] }} | {{ $item['online'] ? 'Online' : 'Offline' }} | {{ $item['system']['uptime'] ?? '-' }} | Detail |
| No devices configured | ||||