@extends('layouts.admin') @section('header')
{{ __('Status') }}
{{ __($machine->status === 'online' ? 'Online' : ($machine->status === 'error' ? 'Error' : 'Offline')) }}
{{ __('Location') }}
{{ $machine->location }}
{{ __('Last Heartbeat') }}
{{ $machine->last_heartbeat_at ?? __('N/A') }}
| {{ __('Time') }} | {{ __('Level') }} | {{ __('Message') }} |
|---|---|---|
| {{ $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
|
| {{ __('No logs found') }} | ||