Package Data | |
---|---|
Maintainer Username: | georgesdoe |
Maintainer Contact: | georgefourm@gmail.com (George Fourmouzis) |
Package Create Date: | 2017-04-17 |
Package Last Update: | 2018-03-25 |
Language: | HTML |
License: | BSD-3-Clause |
Last Refreshed: | 2025-05-03 03:05:21 |
Package Statistics | |
---|---|
Total Downloads: | 6 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
A Laravel package to view and manage your application's logs online.
This package is meant to be used as a drop-in solution in order to manage and download your application's log files.
composer install georgesdoe/laravel-weblog
php artisan vendor:publish --tag=main
,
and optionally if you want to edit the views php artisan vendor:publish --tag=views
filesystems.php
configuration file called logs
pointing to where your logs are stored, for example 'logs' => [
'driver' => 'local',
'root' => storage_path('logs'),
],
app.php
configuration file by adding the following to the providers arrayGeorgesdoe\Weblog\WeblogServiceProvider::class,
You are can modify the views as you wish after publishing them, or even use the routes as an API for your own front-end.
In the weblog.php
configuration file, you can also configure the route prefix (which is "logs" by default) and the middleware to use for these routes.
You should change the middleware to one that requires authentication so your logs aren't exposed