srmilon / log-viewer
To view laravel logs in details
Installs: 1 710
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
Type:laravel-package
Requires
- php: >=5.3.0
- illuminate/support: 4.2.*|5.*
This package is not auto-updated.
Last update: 2025-03-22 15:42:14 UTC
README
The package will help to view laravel logs easily.
Prerequisites
PHP >= 5.3.0
Installing
Install the package via Composer by following command:
composer require srmilon/log-viewer
Once package installation done, register the service provider in config/app.php
in the providers array
like bellow:
providers' => [
...
Srmilon\LogViewer\LogServiceProvider::class
]
For publishing views
php artisan vendor:publish \
--provider="Srmilon\LogViewer\LogServiceProvider" \
--tag=views
Then add folloiwng route in your routes file:
Route::get('/log', '\Srmilon\LogViewer\LogViewerController@index');
Now you can browse your laravel website logs using {your-website-url}/log
.
For example:
http://www.example.com/log