hasibkamal / view-logs
To view laravel logs in details
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:laravel-package
pkg:composer/hasibkamal/view-logs
Requires
- php: >=5.3.0
- illuminate/support: 4.2.*||5.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0
This package is auto-updated.
Last update: 2025-12-10 13:14:28 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 hasibkamal/view-logs
Once package installation done, register the service provider in config/app.php in the providers array like bellow:
providers' => [
...
HasibKamal\ViewLog\LogServiceProvider::class
]
For publishing views
php artisan vendor:publish \
--provider="HasibKamal\ViewLog\LogServiceProvider" \
--tag=views
Then add folloiwng route in your routes file:
Route::get('/logs', '\Hasibkamal\ViewLog\ViewLogController@index');
Now you can browse your laravel website logs using {your-website-url}/logs.
For example:
http://www.example.com/logs