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

Error Details #{{ $error->id }}

{{ strtoupper($error->level) }} @if($error->is_resolved) Resolved @else Unresolved @endif @if($error->is_sent) Sent to Support @endif

Back to List
{{-- Error Information --}}

Error Information

{{ $error->type }}
{{ $error->message }}
{{ $error->file }} @if($error->line) Line: {{ $error->line }} @endif
{{ $error->method }} {{ $error->url }}
{{ $error->ip ?? 'Unknown' }}
{{ $error->user_agent ?? 'Unknown' }}
{{ $error->created_at->format('F d, Y \a\t H:i:s') }} ({{ $error->created_at->diffForHumans() }})
{{-- Stack Trace --}}

Stack Trace

{{ $error->trace }}
{{-- Context Data --}} @if($error->context)

Context Data

{{ json_encode($error->context, JSON_PRETTY_PRINT) }}
@endif
{{-- Quick Actions --}}

Actions

@if(!$error->is_resolved) @endif @if(!$error->is_sent) @endif Download JSON
{{-- User Information --}} @if($error->user)

User Information

{{ $error->user->name }}
{{ $error->user->name }}
{{ $error->user->email }}
{{ $error->user->id }}
View User Profile
@else

User Information

Guest User

@endif {{-- Similar Errors --}} @if($similarErrors->count() > 0)

Similar Errors ({{ $similarErrors->count() }})

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