rap2hpoutre/laravel-log-viewer
最新稳定版本:v3.1.0
Composer 安装命令:
composer require rap2hpoutre/laravel-log-viewer
包简介
A Laravel log reader
README 文档
README
TL;DR
Log Viewer for Laravel 12 & 13. Install with composer, create a route to LogViewerController.
For older Laravel versions and Lumen, please refer to the older releases. Please note that those Laravel versions, as well as Lumen, are no longer maintained.
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:
Install (Laravel)
Install via composer
composer require rap2hpoutre/laravel-log-viewer
Add a route in your web routes file:
Route::get('logs', [\Rap2hpoutre\LaravelLogViewer\LogViewerController::class, 'index']);
Go to http://myapp/logs or some other route
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.
统计信息
- 总下载量: 15.03M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3234
- 点击次数: 2
- 依赖项目数: 80
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2014-11-24
