@extends('central.super.layout') @section('title', __('super.logs_health.detail_title')) @push('styles') @endpush @section('content')
#{{ $log->id }} · {{ __('super.logs_health.severity_' . $log->severity) }} · {{ $log->occurred_at?->toDateTimeString() }}
{{ json_encode($log->context, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE) }}
{{ __('super.logs_health.resolved_by') }}: {{ $log->resolver?->name ?? '—' }}
{{ __('super.logs_health.resolved_at') }}: {{ $log->resolved_at?->toDateTimeString() }}
@if($log->resolution_note){{ __('super.logs_health.note') }}:
{{ $log->resolution_note }}
@endif