mhidea / laravel-requests-stat
Laravel requests Statistic
Package info
github.com/mhidea/laravel-requests-stat
Language:Blade
pkg:composer/mhidea/laravel-requests-stat
1.0.0
2021-04-30 12:23 UTC
Requires
- laravel/framework: >=5.0
This package is auto-updated.
Last update: 2026-03-01 00:56:33 UTC
README
Lightweight package to save requests' statistic that helps you find problematic routes to be optimized.
Installation
Install using composer:
composer require mhidea/laravel-requests-stat
Add serviceproviver to 'providers' in config/app.php:
Mhidea\LaravelRequestsStat\LaravelRequestsStatServiceProvider::class
Migrate:
php artisan migrate
Publish config file to config/laravel-requests-stat.php:
php artisan vendor:publish --tag=laravelRequestsStat-config
Then you can see stats in path /requestsStat. This path can be changed in config file.