ahilmurugesan / routeloganalyzer
This is used for laravel route and log analyzer
Installs: 25
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 3
Open Issues: 0
Language:HTML
Requires
- php: >=5.6.0
README
A laravel package for analysing route usage and log files.
Installation
Begin by pulling in the package through Composer.
composer require ahilmurugesan/routeloganalyzer
Configuration
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
\Ahilan\LogViewer\LogViewerServiceProvider::class,
Finally, to view the logs just access /logviewer
route.
Route Usage Module Configuration
To access route usage module run the migration command
php artisan migrate
Then run the preset command for the route usage module
php artisan preset routeseed
Finally, to view the route usage module just access /routeusage
route.