sn0rk64/laravel-log-viewer is a Laravel package for a laravel log reader.
It currently has 1 GitHub stars and 158 downloads on Packagist (latest version v1.7.1).
Install it with composer require sn0rk64/laravel-log-viewer.
Discover more Laravel packages by sn0rk64
or browse all Laravel packages to compare alternatives.
Last updated
No public assets, no vendor routes, works with and/or without log rotate. Modification of rap2hpoutre/laravel-log-viewer
Small log viewer for laravel. Looks like this:



Install via composer
composer require rap2hpoutre/laravel-log-viewer
Add Service Provider to config/app.php in providers section
Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class,
Add a route in your web routes file:
Route::get('logs', '\Rap2hpoutre\LaravelLogViewer\LogViewerController@index');
Go to http://myapp/logs or some other route
Install via composer
composer require rap2hpoutre/laravel-log-viewer
Add the following in bootstrap/app.php:
$app->register(\Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class);
Explicitly set the namespace in app/Http/routes.php:
$router->group(['namespace' => '\Rap2hpoutre\LaravelLogViewer'], function() use ($router) {
$router->get('logs', 'LogViewerController@index');
});
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.