Laravel 10 – 13.x   •   Zero Dependencies   •   Dual Themes   •   Global Search   •   Smart Alerts

Powerful
Log Management
for Laravel

Loading...

Track, analyze, and manage your Laravel application logs effortlessly with an interactive dashboard, global multi-file search, side-by-side log comparison, smart alerts (Mail, Slack, Discord, Webhook), dual themes (LiteFlow & GlowStack), zero-dependency exports (CSV, Excel, PDF, JSON), row bookmarks, frequent entries panel, and real-time insights.

composer require kssadi/log-tracker
18+
Core Features
4
Alert Channels
0
Dependencies

Why Choose Laravel Log Tracker

Everything you need for comprehensive log management and analytics

Interactive Dashboard

Comprehensive log analytics with charts and real-time insights. View statistics, error patterns, and peak error hours visualization.

Dual Theme System

Choose between LiteFlow (minimal & clean) and GlowStack (modern & colorful) themes. Switch instantly with Artisan commands.

Zero-Dependency Exports

Export logs in CSV, Excel, PDF, and JSON formats without any external libraries. Handle up to 50,000 entries per export.

Error Pattern Analysis

Identify top error types and peak error hours with visual charts. Smart analytics help you spot trends quickly.

Advanced Filtering

Filter logs by level (Emergency, Alert, Critical, Error, Warning, Notice, Info, Debug), date range, or custom keywords.

Log File Management

View, download, delete, and manage log files effortlessly. Smart file pagination for efficient handling of large numbers.

Dynamic Log Levels

Laravel log levels with dynamic colors and icons. Visual differentiation makes log analysis faster and easier.

Max File Size Protection

Intelligent file size checking to prevent memory issues. Configurable limits keep your application safe.

Real-time Statistics

Live log counts and performance metrics. Monitor your application's health at a glance with beautiful visualizations.

Stack Trace Viewer

Detailed error stack traces with syntax highlighting. Debug faster with clear, formatted error information.

Responsive Design

Works perfectly on desktop, tablet, and mobile devices. Beautiful UI adapts to any screen size seamlessly.

Highly Customizable

Tailor log levels, colors, icons, pagination, file limits, and behavior to your needs via configuration file.

Global Multi-File Search

Search across all log files simultaneously with keyword, level, and date filters. Instant results with context-aware highlighting across your entire log history.

Log File Comparison

Compare two log files side-by-side to identify differences, track regressions, and understand changes between deployments or time periods.

Smart Alerts & Notifications

Send real-time log alerts via Mail, Slack, Discord, or Webhook. Configurable thresholds and cooldown periods keep you informed without alert fatigue.

Copy to Clipboard

One-click copy for log messages and full stack traces. Share error details instantly with your team or paste directly into bug reports.

Row Bookmark & Mark

Bookmark important log entries with a gold highlight that persists across page reloads via localStorage. Never lose track of critical errors again.

Frequent Entries Panel

Automatically surfaces the top 15 most repeated log messages with occurrence counts, first seen, and last seen timestamps to highlight persistent issues.

See It in Action

Beautiful, professional log management interface for every scenario

Log Tracker Dashboard
Interactive Dashboard
Log Files Management
Log Files Management
Log File View
Log File View
GlowStack Theme
GlowStack Theme
LiteFlow Theme
LiteFlow Theme

Dual Theme System

Choose the perfect theme for your workflow and preferences

GlowStack
Modern & Colorful

✨ GlowStack Theme

Modern, colorful, enhanced visual log view with rich colors, advanced styling, and enhanced user experience. Perfect for detailed log analysis and visual engagement.

Vibrant color scheme
Enhanced visual hierarchy
Rich animations
Advanced styling elements
php artisan log-tracker:theme set GlowStack
GlowStack Theme Preview
LiteFlow
Minimal & Fast

🌊 LiteFlow Theme

Minimal, clean log view with streamlined interface. Clean design, fast loading, and excellent readability. Optimized for performance and high-frequency log monitoring.

Minimalist design
Faster page loads
Distraction-free UI
Optimized performance
php artisan log-tracker:theme set LiteFlow
LiteFlow Theme Preview

Zero-Dependency Exports

Export your logs in multiple formats without any external libraries

4 Export Formats Available

Export your logs in CSV, Excel, PDF, and JSON formats for external analysis and reporting with absolutely zero external dependencies.

CSV
Excel-compatible CSV format
Excel
Native Excel XML format
PDF
Print-ready HTML report
JSON
Structured with metadata
Up to 50,000 log entries per export
Auto cleanup after 7 days
config/log-tracker.php
'export' => [
    'enabled' => true,
    'formats' => [
        'csv' => [
            'enabled' => true,
            'description' => 'Excel-compatible CSV format'
        ],
        'json' => [
            'enabled' => true,
            'description' => 'Structured JSON with metadata'
        ],
        'excel' => [
            'enabled' => true,
            'description' => 'Native Excel XML format'
        ],
        'pdf' => [
            'enabled' => true,
            'description' => 'Print-ready HTML report'
        ],
    ],
    'limits' => [
        'max_entries' => 50000,
        'max_file_size_mb' => 50,
        'timeout_seconds' => 300,
    ],
    'storage' => [
        'cleanup_after_days' => 7,
    ],
];

Get Started in 2 Steps

From installation to comprehensive log management in under a minute

1

Install the Package

composer require kssadi/log-tracker
2

Access Dashboard

https://your-domain.com/log-tracker

Protected by 'web' and 'auth' middleware by default

That's it! Visit /log-tracker to see your beautiful log management dashboard.

Read Full Documentation

System Requirements

Supports Laravel 10.0 through 13.x with PHP 7.0 - 8.4

Laravel 13.x ✔ Tested
PHP 8.3 – 8.4
Laravel 12.x ✔ Tested
PHP 8.1 – 8.4
Laravel 11.x ✔ Tested
PHP 8.1 – 8.3
Laravel 10.x ✔ Tested
PHP 8.0 – 8.2

Works with any database supported by Laravel

.env
# Recommended log configuration
LOG_CHANNEL=daily
LOG_LEVEL=debug

# Log retention
LOG_DAYS=30

# Log Tracker route prefix
LOG_TRACKER_ROUTE_PREFIX=log-tracker

# Theme selection
LOG_TRACKER_THEME=GlowStack