@extends('admin.layouts.app') @section('title', "Logs {$fileName}") @section('content')
{{-- Header --}}

{{ $fileName }}

Log file details and analysis

Back to logs
{{-- Filters --}}

Filters

{{-- Level --}}
{{-- Date --}}
{{-- Apply --}}
{{-- Clear --}} Clear Filters
{{-- KPI Counters (Current Page) --}}
{{-- INFO --}}
{{-- Info Icon --}}
INFO
{{ $kpi['INFO'] }}
Current page
{{-- WARN --}}
{{-- Warning Icon --}}
WARN
{{ $kpi['WARN'] }}
Current page
{{-- ERROR --}}
{{-- Error Icon --}}
ERROR
{{ $kpi['ERROR'] }}
Current page
{{-- Log Viewer --}}
@forelse ($lines as $i => $line)
{{-- Line Number --}} {{ ($page - 1) * 200 + $i + 1 }} {{-- Log Line --}} {{ $line }}
@empty
No log entries found for selected filters.
@endforelse
{{-- Pagination --}}
@if ($page > 1) ← Previous @else @endif @if ($hasMore) Next → @endif
@endsection