mhidea/laravel-requests-stat

Laravel requests Statistic

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:Blade

pkg:composer/mhidea/laravel-requests-stat

1.0.0 2021-04-30 12:23 UTC

This package is auto-updated.

Last update: 2025-10-29 03:04:10 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.