@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

儀表板

{{ $totalMachines }}

總機台數

{{ $onlineMachines }}

連線中

{{ $offlineMachines }}

離線

{{ $errorMachines }}

異常
標題 狀態 時間
系統初始化
正常 剛剛
@endsection