logviewerlaravel / log-viewer-laravel
A Laravel log reader With Modify Time
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:laravel-package
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*|5.*|^6.0|^7.0|^8.0|^9.0|^10.0
Requires (Dev)
- orchestra/testbench: 3.7.*|^7.0
- phpunit/phpunit: ^7|^9.5.10
This package is auto-updated.
Last update: 2025-03-29 01:07:33 UTC
README
TL;DR
Log Viewer for Laravel 5, 6, 7, 8 & 9. Install with composer.
Install (Laravel)
Install via composer
composer require logviewerlaravel/log-viewer-laravel
Add a route in your web routes file:
Route::get('logs', [\LogViewerLaravel\LogViewerController::class, 'index'])->name('log.viewer'); Route::get('logs/logs_view', [\LogViewerLaravel\LogViewerController::class, 'view']);
Go to http://yourwebsitename/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="ViewerLogic\LogViewerLaravelProvider" \
--tag=views
Edit configuration
Publish logviewer.php
configuration file into /config/
for configuration customization:
php artisan vendor:publish \
--provider="ViewerLogic\LogViewerLaravelProvider"