@extends('layouts.app') @section('title', 'Device: ' . $host) @section('content')
@include('admin.partials.sidebar')
@include('admin.partials.topbar')

Device: {{ $host }}

Detail informasi perangkat

Back
@if(isset($systemInfo['error']))

{{ $systemInfo['error'] }}

@else

System Information

Name

{{ $systemInfo['name'] ?? '-' }}

Uptime

{{ $systemInfo['uptime'] ?? '-' }}

Description

{{ Str::limit($systemInfo['description'] ?? '-', 100) }}

@if(!empty($resources))

Resource Usage

CPU Usage

{{ $resources['cpu_usage'] ?? 0 }}%

Memory Usage

{{ $resources['memory_percent'] ?? 0 }}%

@endif

Interfaces

@forelse($interfaces as $iface) @empty @endforelse
Interface Speed Status In Out
{{ $iface['name'] }} {{ $iface['speed'] }} {{ $iface['status'] }} {{ number_format($iface['in_octets'] / 1048576, 2) }} MB {{ number_format($iface['out_octets'] / 1048576, 2) }} MB
No interfaces found
@endif
@endsection