Package Data | |
---|---|
Maintainer Username: | endanguyen |
Maintainer Contact: | endanguyen@gmail.com (enda) |
Package Create Date: | 2018-07-05 |
Package Last Update: | 2018-07-05 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:09:20 |
Package Statistics | |
---|---|
Total Downloads: | 616 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
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)
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
EndaLogView\LaravelLogViewer\LaravelLumenLogViewerServiceProvider::class,
Add a route in your web routes file:
Route::get('logs', '\EndaLogView\LaravelLogViewer\LogViewerController@index');
Go to http://myapp/logs
or some other route
Optionally publish log.blade.php
into /resources/views/vendor/laravel-log-viewer/
for view customization:
php artisan vendor:publish \
--provider="EndaLogView\LaravelLogViewer\LaravelLogViewerServiceProvider" \
--tag=views
Install via composer
composer require endanguyen/laravel-logviewer
Add the following in bootstrap/app.php
:
$app->register(\EndaLogView\LaravelLogViewer\LaravelLogViewerServiceProvider::class);
Explicitly set the namespace in app/Http/routes.php
:
$app->group(['namespace' => '\EndaLogView\LaravelLogViewer'], function() use ($app) {
$app->get('logs', 'LogViewerController@index');
});
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
.