@extends('clients.layouts.app')
@section('title', 'Network Status')
@section('content')
Network Status
Real-time health and
infrastructure updates
All Systems
Operational
@php
$servers = [
['name' => 'Premium Hosting (US-East)', 'status' => 'Online', 'uptime' => '99.98%', 'load' => '0.45'],
['name' => 'Managed VPS Cluster', 'status' => 'Online', 'uptime' => '100%', 'load' => '1.12'],
['name' => 'DNS Cluster (Global)', 'status' => 'Online', 'uptime' => '100%', 'load' => '0.08'],
];
@endphp
|
Infrasctructure Node |
Status
|
Uptime
|
Load |
@foreach($servers as $server)
| {{ $server['name'] }} |
{{ $server['status'] }} |
{{ $server['uptime'] }} |
{{ $server['load'] }}
|
@endforeach
@endsection