The best (IMO) Log Viewer for Laravel 5 (compatible with 4.2 too) and Lumen. Install with composer, create a route to LogViewerController
. 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)
- Supported locales : en, bg, pt-br
- Customizable view
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 app/Http/routes.php
(or choose another route):
Route::get('logs', '\Rap2hpoutre\LaravelLogViewer\LogViewerController@index');
Publish config, lang and view files
php artisan vendor:publish
Go to http://myapp/logs
or some other route
Install via composer
composer require rap2hpoutre/laravel-log-viewer
Enable facades by uncommenting this line in bootstrap/app.php
:
$app->withFacades();
Add the following in bootstrap/app.php
:
$app->register(Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class);
Explicitly set the namespace in app/Http/routes.php
:
$app->group(['namespace' => '\Rap2hpoutre\LaravelLogViewer'], function() use ($app) {
$app->get('logs', 'LogViewerController@index');
});
Publish config, lang and view files
php artisan vendor:publish
- All contibutors from GitHub. (issues / PR)
- @petyots added multi language support.