@extends('layouts.admin') @section('header')

機台詳情: {{ $machine->name }}

← 返回列表
@endsection @section('content')

基本資訊

當前狀態

{{ strtoupper($machine->status) }}

位置

{{ $machine->location }}

最後心跳時間

{{ $machine->last_heartbeat_at ?? 'N/A' }}

即時操作日誌 (最後 50 筆)

所有時間為系統時區
@forelse ($machine->logs as $log) @empty @endforelse
時間 層級 訊息
{{ $log->created_at->format('Y-m-d H:i:s') }} @php $levelClasses = [ 'info' => 'text-blue-400', 'warning' => 'text-yellow-400', 'error' => 'text-red-400 font-bold', ]; @endphp [{{ strtoupper($log->level) }}] {{ $log->message }} @if($log->context)
{{ json_encode($log->context) }}
@endif
暫無相關日誌
@endsection