@extends('layouts.admin') @section('content')

System Logs

View and manage application error logs.

@csrf @method('DELETE')
@forelse($logs as $log) @empty @endforelse
Time Level Message Location Action
{{ $log->created_at->format('M d, Y H:i:s') }} {{ $log->level }}
{{ Str::limit($log->message, 80) }}
{{ $log->url }}
@if($log->file)
{{ basename($log->file) }}:{{ $log->line }}
@endif
View
No logs found. System is running smoothly.
{{ $logs->links() }}
@endsection