@extends('central.super.layout') @section('title', __('super.logs_health.title')) @push('styles') @endpush @section('content')
{{ __('super.logs_health.subtitle') }}
{{ number_format($stats['total']) }}
{{ __('super.logs_health.total_logs') }}
{{ number_format($stats['unresolved']) }}
{{ __('super.logs_health.unresolved') }}
{{ number_format($stats['critical']) }}
{{ __('super.logs_health.critical') }}
{{ number_format($stats['last_24h']) }}
{{ __('super.logs_health.last_24h') }}
{{ number_format($stats['resolved']) }}
{{ __('super.logs_health.resolved') }}
{{ __('super.logs_health.unresolved_by_type') }}
| {{ __('super.logs_health.col_severity') }} | {{ __('super.logs_health.col_type') }} | {{ __('super.logs_health.col_tenant') }} | {{ __('super.logs_health.col_message') }} | {{ __('super.logs_health.col_occurred_at') }} | {{ __('super.logs_health.col_status') }} | |
|---|---|---|---|---|---|---|
| {{ __('super.logs_health.severity_' . $log->severity) }} | {{ __('super.logs_health.type_' . $log->type) }} | @if($log->tenant_id) {{ $log->tenant?->company_name ?? $log->tenant_id }} @else — @endif | {{ $log->occurred_at?->diffForHumans() }} | @if($log->isResolved()) {{ __('super.logs_health.resolved') }} @else {{ __('super.logs_health.unresolved') }} @endif |
|
|
|
{{ __('super.logs_health.empty_title') }} {{ __('super.logs_health.empty_subtitle') }} |
||||||