@extends('adminlte::page') @section('title', 'System Logs') @section('content_header')

System Logs

@stop @section('content')

Log Viewer

@if(session('success'))
Success!
{{ session('success') }}
@endif @if(session('error'))
Error!
{{ session('error') }}
@endif
@if(!empty($logContent)) {!! nl2br(e($logContent)) !!} @else

No log content available or log file is empty.

@endif

Log Settings

@csrf
Set the minimum level of messages that should be logged
Logs older than this will be automatically deleted
Log user activities like login, logout, and data modifications
When enabled, old logs will be deleted according to the retention period
Cancel
@stop @section('css') @stop @section('js') @stop