View all routes for your Laravel app via a web page in a browser
apih/laravel-route-list-web is a Laravel package for view all routes for your laravel app via a web page in a browser.
It currently has 17 GitHub stars and 6.243 downloads on Packagist (latest version v1.6.1).
Install it with composer require apih/laravel-route-list-web.
Discover more Laravel packages by apih
or browse all Laravel packages to compare alternatives.
Last updated
This package provides a way to view your Laravel app routes via a web browser.
^8.0^8.0|^9.0|^10.0|^11.0|^12.0|^13.0You can install the package via Composer:
composer require apih/laravel-route-list-web --dev
The Apih\RouteListWeb\RouteListWebServiceProvider class is auto-discovered and registered by default.
If you want to register it yourself, add the service provider in config/app.php:
'providers' => [
/*
* Package Service Providers...
*/
Apih\RouteListWeb\RouteListWebServiceProvider::class,
],
To view the routes in a web browser, just open /route:list path. For example, if your app domain is https://dev.test, open https://dev.test/route:list.
If you discover any security related issues, please email [email protected] instead of using the issue tracker. Please prefix the subject with Laravel Route List Web:.
The MIT License (MIT). Please see License File for more information.