PHPackages                             s-patompong/laravel-routes-html - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. s-patompong/laravel-routes-html

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

s-patompong/laravel-routes-html
===============================

View your Laravel routes on the browser.

1.5.1(4y ago)264.6k4[1 PRs](https://github.com/s-patompong/laravel-routes-html/pulls)MITBladePHP ^8.0

Since Nov 25Pushed 4y ago1 watchersCompare

[ Source](https://github.com/s-patompong/laravel-routes-html)[ Packagist](https://packagist.org/packages/s-patompong/laravel-routes-html)[ Docs](https://github.com/s-patompong/laravel-routes-html)[ GitHub Sponsors](https://github.com/s-patompong)[ RSS](/packages/s-patompong-laravel-routes-html/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (7)Dependencies (12)Versions (8)Used By (0)

View your Laravel routes on the browser 🏖
=========================================

[](#view-your-laravel-routes-on-the-browser-)

[![Latest Version on Packagist](https://camo.githubusercontent.com/facaf983b8d7223b13f4ca8293fb27281117952a65381d42491e8f7acf9c57d1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f732d7061746f6d706f6e672f6c61726176656c2d726f757465732d68746d6c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/s-patompong/laravel-routes-html)[![GitHub Tests Action Status](https://camo.githubusercontent.com/f89e2f734b0fc372adc6dbcdcab445450a23cb6433aad649323af1d5c9345a51/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f732d7061746f6d706f6e672f6c61726176656c2d726f757465732d68746d6c2f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/s-patompong/laravel-routes-html/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/167ea8f3c63599cbbb4bb25c79da23f8d1eb4bdb4ca6ab55f368d649a4b3b6f2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f732d7061746f6d706f6e672f6c61726176656c2d726f757465732d68746d6c2f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/s-patompong/laravel-routes-html/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/8115ee2395e15f4f8cd613efe288134c968974b8c48dcd37c09b47f5978e084d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f732d7061746f6d706f6e672f6c61726176656c2d726f757465732d68746d6c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/s-patompong/laravel-routes-html)

This package adds a route to your Laravel application. Once you've installed this package, enter `/route-list` path in the browser to see your route list.

    laravel-routes-html.mov    Features
--------

[](#features)

- See all routes in your Laravel application in a nicely formatted table with responsive layout.
- Sort routes by domain, method, uri, name, action, and middleware.
- Quickly filter to see only the routes that you want. 🎉
- Click on the GET|HEAD route to open it on a new tab. You need to specify the parameters if the route requires them. 😎

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require s-patompong/laravel-routes-html
```

You can publish the config file with:

```
php artisan vendor:publish --tag="routes-html-config"
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="routes-html-views"
```

This is the contents of the published config file:

```
return [
    /**
     * Either you want to enable or disable the route
     * It should be enabled only in the local environment
     * By default, it'll be enabled if the app.debug is true
     */
    'enabled' => (bool) env('ROUTES_HTML_ENABLED', config('app.debug')),

    /**
     * The route URI
     */
    'uri' => '/route-list',

    /**
     * The route name
     */
    'route_name' => 'routes',

    /**
     * The list of route to ignore
     */
    'ignore_routes' => [
        '_ignition/*',
        'sanctum/*',
        'livewire/*',
    ],

    /**
     * The list of middleware that you want
     * the request to run through before hitting
     * the /route-list route
     */
    'middlewares' => [
        // Example: uncomment the first line below
        // to allow only the authenticated user
        // to use the /route-list route

        // \App\Http\Middleware\Authenticate::class
    ],
];
```

Usage
-----

[](#usage)

Open your Laravel application on the browser and go to `/route-list` URL (or the URL that you put inside the `routes-html.uri`).

[![Screenshot](https://camo.githubusercontent.com/12ea858420df8accd12129cb19d333b616b0c77f2060dd5f915d6c50512c3a04/68747470733a2f2f692e696d6775722e636f6d2f6468495145624d2e706e67)](https://camo.githubusercontent.com/12ea858420df8accd12129cb19d333b616b0c77f2060dd5f915d6c50512c3a04/68747470733a2f2f692e696d6775722e636f6d2f6468495145624d2e706e67)

### Route Middlewares

[](#route-middlewares)

To add middlewares to the request pipeline before it hits the `/route-list` route. Add the middleware classname to the `middlewares` key in the config file like so:

```
'middlewares' => [
    \App\Http\Middleware\Authenticate::class
]
```

This will make sure that only the authenticated user can access the `/route-list` route.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Patompong Savaengsuk](https://github.com/s-patompong)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

7

Last Release

1623d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d5e6fa560d4384df78f7d39c75e113c66f37e168a29a7dbdff32bc36ec55ed0d?d=identicon)[pangpondpon](/maintainers/pangpondpon)

---

Top Contributors

[![s-patompong](https://avatars.githubusercontent.com/u/3887531?v=4)](https://github.com/s-patompong "s-patompong (22 commits)")

---

Tags

alpinejslaravellaravel-routeroute-listroute-list-browserroute-list-htmllaravelroute lists-patomponglaravel-routes-html

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/s-patompong-laravel-routes-html/health.svg)

```
[![Health](https://phpackages.com/badges/s-patompong-laravel-routes-html/health.svg)](https://phpackages.com/packages/s-patompong-laravel-routes-html)
```

###  Alternatives

[spatie/laravel-data

Create unified resources and data transfer objects

1.7k28.9M627](/packages/spatie-laravel-data)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[hirethunk/verbs

An event sourcing package that feels nice.

513162.9k6](/packages/hirethunk-verbs)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

123544.7k](/packages/worksome-exchange)[ralphjsmit/livewire-urls

Get the previous and current url in Livewire.

82270.3k4](/packages/ralphjsmit-livewire-urls)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
