Skip to content

educarlabs/laravel-log-viewer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

educarlabs - Laravel 5 log viewer

Es un fork de rap2hpoutre/laravel-log-viewer. Es exactamete igual salvo que se elimina la posibilidad de eliminar logs.

Packagist Packagist Packagist Scrutinizer Code Quality Build Status SensioLabsInsight

TL;DR

The best (IMO) Log Viewer for Laravel 5 (compatible with 4.2 too). 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)

What ?

Small log viewer for laravel. Looks like this:

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

Install

Agregar la entrada al paquete en composer.json

"educarlabs/laravel-log-viewer": "dev-master"

Agregar la entrada al repositorio en composer.json

    "repositories": [{
		"type": "vcs",
		"url": "https://github.com/educarlabs/laravel-log-viewer.git"
    }],

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

Rap2hpoutre\LaravelLogViewer\LaravelLogViewerServiceProvider::class,

Add a route in app/Http/routes.php (or choose another route):

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

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

Packages

No packages published

Languages

  • PHP 100.0%