@extends('layouts.app') @section('title', 'Health Check') @section('content')
{{ $device->ip_address }}:{{ $device->port }}
@if($device->location)
| Device | IP | Status | Latency | Message | Last Seen | Last Sent |
|---|---|---|---|---|---|---|
| {{ $d->name }} | {{ $d->ip_address }} |
@if($r['online']) Online @else Offline @endif | {{ $r['latency_ms'] !== null ? $r['latency_ms'].' ms' : '—' }} | {{ $r['message'] }} | {{ $d->last_seen_at?->diffForHumans() ?? '—' }} | @if($d->last_sent_mode) {{ strtoupper($d->last_sent_mode) }} {{ $d->last_sent_at?->format('d/m H:i') }} @else — @endif |