atlas-wong / laravel-log-viewer
A Laravel log reader
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*|5.*
- dev-master
- 0.11.1
- v0.11.0
- v0.10.4
- v0.10.3
- v0.10.2
- v0.10.1
- v0.10.0
- v0.9.0
- v0.8.1
- v0.8.0
- v0.7.1
- v0.7.0
- v0.6.1
- v0.6.0
- v0.5.3
- v0.5.2
- v0.5.1
- v0.5.0
- v0.4.3
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.0
- v0.2.8
- v0.2.7
- v0.2.6
- v0.2.5
- v0.2.4
- v0.2.3
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.10
- v0.1.9
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- dev-scrutinizer-patch-1
This package is not auto-updated.
Last update: 2024-11-24 05:18:50 UTC
README
TL;DR
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
Rap2hpoutre 's Laravel log viewer &
Micheal Mand's Laravel 4 log viewer (works only with laravel 4.1)
What ?
Small log viewer for laravel. Looks like this:
Difference from rap2hpoutre's package
This fork allow customizing below setting:
- max_file_size
- search_delay
Todo with this fork
This fork would target on more customizable feature:
- visit audit log (db log)
- ttl of log files
- tbc
Install (Laravel)
Install via composer
composer require atlas-wong/laravel-log-viewer
Add Service Provider to config/app.php
in providers
section (Laravel 5.4 or lower)
AtlasWong\LaravelLogViewer\LaravelLogViewerServiceProvider::class,
Add a route in your web routes file:
Route::get('logs', '\AtlasWong\LaravelLogViewer\LogViewerController@index');
Go to http://myapp/logs
or some other route
Optionally publish laravel-log-viewer.php
into /config
for config customization:
php artisan vendor:publish --provider="AtlasWong\LaravelLogViewer\LaravelLogViewerServiceProvider" --tag=config
Optionally publish log.blade.php
into /resources/views/vendor/laravel-log-viewer/
for view customization:
php artisan vendor:publish --provider="AtlasWong\LaravelLogViewer\LaravelLogViewerServiceProvider" --tag=views
Install (Lumen)
Install via composer
composer require AtlasWong/laravel-log-viewer
Add the following in bootstrap/app.php
:
$app->register(\AtlasWong\LaravelLogViewer\LaravelLogViewerServiceProvider::class);
Explicitly set the namespace in app/Http/routes.php
:
$app->group(['namespace' => '\AtlasWong\LaravelLogViewer'], function() use ($app) { $app->get('logs', 'LogViewerController@index'); });
Troubleshooting
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
.