@php $faviconPath = public_path('favicon.ico'); // or change to 'favicon.png' if that's what you're using $faviconUrl = asset('favicon.ico') . '?v=' . (file_exists($faviconPath) ? filemtime($faviconPath) : time()); @endphp Logs

Logs

@if(session('error'))
{{ session('error') }}
@elseif($logs->isEmpty())
No logs found for the current player.
@else @foreach ($logs as $log) @endforeach
Title Request Response
{{ $log->title }}
@php echo json_encode(json_decode($log->request, true), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); @endphp
@php echo json_encode(json_decode($log->response, true), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); @endphp
@endif