invertedx/route-traffic

This package is abandoned and no longer maintained. No replacement package was suggested.

Laravel Route Listing plugin.helper package to display all the routes in the app

0.3 2017-02-23 06:59 UTC

This package is not auto-updated.

Last update: 2021-10-30 03:43:58 UTC


README

Laravel Route Listing plugin. simple way to view all the routes. when it comes to laravel we have artisan to help to list all the routes.but our application is large and has 100s of routes this option is really a bad idea. so using this package as dev dependancy we can view all the routes on our browser by visiting yourapp.dev/traffic. alt text

Install steps

Setp 1 - adding package as composer dependency

add packge as composer dependency composer require invertedx/route-traffic

setp 2 - configuring service provider

add service to providers array in config/app.php

invertedx\routetraffic\RouteTrafficServiceProvider::class,

step 2 - publishing assets

routetraffic require css and js assets to be in public path

php artisan vendor:publish

final

visit yourapp.dev/traffic to view all your routes