lfalmeida / laravel-log-viewer
A Laravel log reader
This package's canonical repository appears to be gone and the package has been frozen as a result.
dev-master
2016-02-29 03:31 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*|5.*
This package is not auto-updated.
Last update: 2019-07-29 02:40:40 UTC
README
Inspired by https://github.com/rap2hpoutre/laravel-log-viewer
Install
Install via composer
composer require lfalmeida/laravel-log-viewer
Add Service Provider to config/app.php
in providers
section
Lfalmeida\LaravelLogViewer\LaravelLogViewerServiceProvider::class,
Add a route in app/Http/routes.php
(or choose another route):
Route::get('logs', '\Lfalmeida\LaravelLogViewer\LogViewerController@index');
Go to http://myapp/logs
or some other route