nmfmcosta / laravel-log-viewer
A Laravel log reader
Installs: 8 116
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 374
Type:laravel-package
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*|5.*|^6.0|^7.0|^8.0|^9.0|^10.0
Requires (Dev)
- orchestra/testbench: 3.7.*|^7.0
- phpunit/phpunit: ^7|^9.5.10
This package is auto-updated.
Last update: 2024-11-03 13:08:52 UTC
README
This is a fork from https://github.com/rap2hpoutre/laravel-log-viewer/ v1.7.0 updated to work on Laravel 9.
All credits go the original authors.
Install (Laravel)
Install via composer
composer require nmfmcosta/laravel-log-viewer
Add Service Provider to config/app.php
in providers
section
LB\LaravelLogViewer\LaravelLogViewerServiceProvider::class,
Add a route in your web routes file:
Route::get('logs', '\LB\LaravelLogViewer\LogViewerController@index');
Go to http://myapp/logs
or some other route
Install (Lumen)
Install via composer
composer require nmfmcosta/laravel-log-viewer
Add the following in bootstrap/app.php
:
$app->register(\LB\LaravelLogViewer\LaravelLogViewerServiceProvider::class);
Explicitly set the namespace in app/Http/routes.php
:
$router->group(['namespace' => '\LB\LaravelLogViewer'], function() use ($router) { $router->get('logs', 'LogViewerController@index'); });
Advanced usage
Customize view
Publish log.blade.php
into /resources/views/vendor/laravel-log-viewer/
for view customization:
php artisan vendor:publish \
--provider="LB\LaravelLogViewer\LaravelLogViewerServiceProvider" \
--tag=views
Edit configuration
Publish logviewer.php
configuration file into /config/
for configuration customization:
php artisan vendor:publish \
--provider="LB\LaravelLogViewer\LaravelLogViewerServiceProvider"
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
.