sn0rk64 / laravel-log-viewer by sn0rk64
forked from rap2hpoutre/laravel-log-viewer

A Laravel log reader
157
0
0
Package Data
Maintainer Username: sn0rk64
Maintainer Contact: raphaelht@gmail.com (rap2hpoutre)
Package Create Date: 2020-07-01
Package Last Update: 2020-07-08
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-12 03:13:24
Package Statistics
Total Downloads: 157
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 0
Total Forks: 0
Total Open Issues: 0

Laravel log viewer

TL;DR

No public assets, no vendor routes, works with and/or without log rotate. Modification of rap2hpoutre/laravel-log-viewer

What ?

Small log viewer for laravel. Looks like this:

demo page

The diffinces from main package

  • Log level filters
  • Pretty json browsing

demo page

  • Fully lumen support

Install (Laravel)

Install via composer

composer require rap2hpoutre/laravel-log-viewer

Add Service Provider to config/app.php in providers section

Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class,

Add a route in your web routes file:

Route::get('logs', '\Rap2hpoutre\LaravelLogViewer\LogViewerController@index');

Go to http://myapp/logs or some other route

Install (Lumen)

Install via composer

composer require rap2hpoutre/laravel-log-viewer

Add the following in bootstrap/app.php:

$app->register(\Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class);

Explicitly set the namespace in app/Http/routes.php:

$router->group(['namespace' => '\Rap2hpoutre\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="Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider" \
  --tag=views

Edit configuration

Publish logviewer.php configuration file into /config/ for configuration customization:

php artisan vendor:publish \
  --provider="Rap2hpoutre\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.