rap2hpoutre/laravel-log-viewer
Lightweight Laravel log viewer for Laravel 12/13. Install via Composer and add a single route to LogViewerController to browse app logs in the browser. No public assets or vendor routes; works with or without log rotation. View and config are publishable.
Log Viewer for Laravel 12 & 13. Install with composer, create a route to LogViewerController.
For older Laravel versions and Lumen, please refer to the older releases. Please note that those Laravel versions, as well as Lumen, are no longer maintained.
No public assets, no vendor routes, works with and/or without log rotate. Inspired by Micheal Mand's Laravel 4 log viewer (works only with laravel 4.1)
Small log viewer for laravel. Looks like this:

Install via composer
composer require rap2hpoutre/laravel-log-viewer
Add a route in your web routes file:
Route::get('logs', [\Rap2hpoutre\LaravelLogViewer\LogViewerController::class, 'index']);
Go to http://myapp/logs or some other route
Publish log.blade.php into /resources/views/vendor/laravel-log-viewer/ for view customization:
php artisan vendor:publish \
--provider="Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider" \
--tag=views
Publish logviewer.php configuration file into /config/ for configuration customization:
php artisan vendor:publish \
--provider="Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider"
If you got a InvalidArgumentException in FileViewFinder.php error, it may be a problem with config caching. Double check installation, then run php artisan config:clear.
How can I help you explore Laravel packages today?