@extends('layouts.app')
@section('title', 'Error Logs | Admin')
@section('content')
{{-- Header --}}
{{ count($lines) }} entries shown
Refresh
{{-- Filters --}}
{{-- Log lines --}}
@if(empty($lines))
No log entries found{{ $filter || $level ? ' matching your filter' : '' }}.
@else
@foreach($lines as $line)
@php
$color = '#aaa';
if (str_contains($line, '.ERROR:')) $color = '#f87171';
elseif (str_contains($line, '.WARNING:')) $color = '#fbbf24';
elseif (str_contains($line, '.INFO:')) $color = '#6ee7b7';
elseif (str_contains($line, '.DEBUG:')) $color = '#93c5fd';
@endphp
{{ $line }}
@endforeach
@endif
@endsection