@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 }} |
{{ strtoupper($d->last_status ?? 'UNKNOWN') }} | — | {{ $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 |