mhidea/laravel-requests-stat

Laravel requests Statistic

1.0.0 2021-04-30 12:23 UTC

This package is auto-updated.

Last update: 2024-09-29 05:56:37 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.