@extends('layouts.app') @section('title', 'Network Status') @section('content')

Network Status

Real-time status of our infrastructure

All Systems Operational

Everything is running smoothly

Servers

@foreach($servers as $server)

{{ $server->name }}

{{ $server->location }}

{{ ucfirst($server->status) }}

Uptime: {{ $server->uptime }}

@endforeach
@if($incidents->count() > 0)

Recent Incidents

@foreach($incidents as $incident)

{{ $incident->title }}

{{ $incident->description }}

@endforeach
@endif
@endsection