@extends('layouts.admin') @section('title', 'Error Logs') @section('content')

Error Logs

Monitor and manage application errors

{{-- Statistics Cards --}}

Total Errors

{{ number_format($stats['total']) }}

Unresolved

{{ number_format($stats['unresolved']) }}

Critical

{{ number_format($stats['critical']) }}

Today

{{ number_format($stats['today']) }}
{{-- Filters --}}

Filters

{{-- Actions Bar --}}
Refresh
{{-- Error Logs Table --}}
@if($errors->count() > 0)
@foreach($errors as $error) @endforeach
Level Type Message File User Date Status Actions
{{ strtoupper($error->level) }} {{ class_basename($error->type) }}
{{ $error->short_message }}
{{ $error->file_location }} @if($error->user) {{ $error->user->name }} @else Guest @endif {{ $error->created_at->format('M d, Y H:i') }} @if($error->is_resolved) Resolved @else Unresolved @endif @if($error->is_sent) @endif
{{ $errors->links() }}
@else

No Errors Found

Great! Your application is running smoothly with no errors logged.

@endif
@endsection @push('scripts') @endpush