atlas-wong / laravel-log-viewer by atlas-wong
forked from rap2hpoutre/laravel-log-viewer

A Laravel log reader
15,318
0
0
Package Data
Maintainer Username: atlas-wong
Maintainer Contact: atlas.wong.times@gmail.com (Atlas Wong)
Package Create Date: 2018-01-19
Package Last Update: 2018-01-22
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:16:55
Package Statistics
Total Downloads: 15,318
Monthly Downloads: 162
Daily Downloads: 7
Total Stars: 0
Total Watchers: 0
Total Forks: 0
Total Open Issues: 0

Laravel 5 log viewer

Packagist

TL;DR

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 Rap2hpoutre 's Laravel log viewer & Micheal Mand's Laravel 4 log viewer (works only with laravel 4.1)

What ?

Small log viewer for laravel. Looks like this:

capture d ecran 2014-12-01 a 10 37 18

Difference from rap2hpoutre's package

This fork allow customizing below setting:

  • max_file_size
  • search_delay

Todo with this fork

This fork would target on more customizable feature:

  • visit audit log (db log)
  • ttl of log files
  • tbc

Install (Laravel)

Install via composer

composer require atlas-wong/laravel-log-viewer

Add Service Provider to config/app.php in providers section (Laravel 5.4 or lower)

AtlasWong\LaravelLogViewer\LaravelLogViewerServiceProvider::class,

Add a route in your web routes file:

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

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

Optionally publish laravel-log-viewer.php into /config for config customization:

php artisan vendor:publish --provider="AtlasWong\LaravelLogViewer\LaravelLogViewerServiceProvider" --tag=config

Optionally publish log.blade.php into /resources/views/vendor/laravel-log-viewer/ for view customization:

php artisan vendor:publish --provider="AtlasWong\LaravelLogViewer\LaravelLogViewerServiceProvider" --tag=views

Install (Lumen)

Install via composer

composer require AtlasWong/laravel-log-viewer

Add the following in bootstrap/app.php:

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

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

$app->group(['namespace' => '\AtlasWong\LaravelLogViewer'], function() use ($app) {
    $app->get('logs', 'LogViewerController@index');
});

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.