@extends('layouts.admin') @section('content') @php $theme = request()->cookie('theme', 'dark-blue'); $isLight = in_array($theme, ['light-blue', 'light-green']); $cardBg = $isLight ? 'bg-white' : 'bg-gray-800'; $textPrimary = $isLight ? 'text-gray-900' : 'text-gray-200'; $textSecondary = $isLight ? 'text-gray-600' : 'text-gray-400'; $borderColor = $isLight ? 'border-gray-200' : 'border-gray-700'; @endphp
| 名稱 | 位置 | 狀態 | 溫度 | 最後心跳 | 操作 |
|---|---|---|---|---|---|
|
{{ $machine->name }}
|
{{ $machine->location ?? '-' }}
|
@if($machine->status === 'online') 連線中 @elseif($machine->status === 'offline') 離線 @else 異常 @endif |
{{ $machine->temperature ? $machine->temperature . '°C' : '-' }}
|
{{ $machine->last_heartbeat_at ? $machine->last_heartbeat_at->diffForHumans() : '-' }}
|
查看 編輯 |