pkboom/laravel-route-usage

dev-master 2020-07-03 19:13 UTC

This package is auto-updated.

Last update: 2024-04-29 04:33:45 UTC


README

Latest Stable Version Total Downloads Build Status

This Laravel package shows a route usage.

This is a demo result. demo.png

Installation

You can install the package via composer:

composer require pkboom/laravel-route-usage

Run the migration:

php artisan migrate

Usage

You can see a route usage with:

php artisan route-usage:show

You can remove a route usage that are older than 1 month:

php artisan route-usage:remove

You can see referers.

php artisan route-usage:referers

demo2.png

You can see run time.

php artisan route-usage:runtime

demo3.png

You can optionally publish the config file with:

php artisan vendor:publish --provider="Pkboom\RouteUsage\RouteUsageServiceProvider" --tag="config"

This is the contents of the published config file:

<?php

return [
    /*
     * List of uris to be excluded when route-usage:show runs.
     */
    'exclude' => [
        '_debugbar/*', 'horizon/*', 'telescope/*',
    ],
];

Testing

composer test

License

The MIT License (MIT). Please see MIT license for more information.