Features | Installation | Configuration | Credits
OPcodes's Log Viewer is a perfect companion for your Laravel app.
You will no longer need to read the raw Laravel log files trying to find what you're looking for.
Log Viewer helps you quickly and clearly see individual log entries, to search, filter, and make sense of your Laravel logs fast. It is free and easy to install.
- π View all the Laravel logs in your
storage/logs
directory, - π Search the logs,
- π Filter by log level (error, info, debug, etc.),
- π Sharable links to individual log entries,
- πΎ Download & delete log files from the UI,
- βοΈ Horizon log support,
- and more...
- PHP 8.0+
- Laravel 8+
To install the package via composer, Run:
composer require opcodesio/log-viewer
Once the installation is complete, you will be able to access Log Viewer directly in your browser.
By default, the application is available at: {APP_URL}/log-viewer
.
(for example: https://my-app.test/log-viewer
)
To publish the config file, run:
php artisan vendor:publish --tag="log-viewer-config"
You can easily change the default route and its middleware in the config/log-viewer.php.
See the configuration below:
/*
|--------------------------------------------------------------------------
| Log Viewer Route
|--------------------------------------------------------------------------
| Log Viewer will be available under this URL.
|
*/
'route_path' => 'log-viewer',
/*
|--------------------------------------------------------------------------
| Log Viewer route middleware.
|--------------------------------------------------------------------------
| The middleware should enable session and cookies support in order for the Log Viewer to work.
| The 'web' middleware will be applied automatically if empty.
|
*/
'middleware' => ['web'],
Read the release blog post for screenshots and more information about Log Viewer's features.
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.