Laravel view for manage log files
Laravel Project Log editor, (*1)
The best (IMO) LogEditor for Laravel 5 .Install with composer, create a route to LogViewController
. No public assets, no vendor routes, works with and/or without log rotate. Inspired by rap2hpoutre (https://github.com/rap2hpoutre/laravel-log-viewer), (*2)
Install via composer, (*3)
composer require krishnakodoth/log-editor=dev-master
Add Service Provider to config/app.php
in providers
section, (*4)
KrishnaKodoth\LogEditor\LogEditorServiceProvider::class,
Add a route in your web routes file:, (*5)
Route::get('/get/logs','KrishnaKodoth\LogEditor\LogEditorController@getLogEditor');
Go to http://your-app/get/logs
or some other route, (*6)