Skip to content

Routes Inspector

Browse and test all registered HTTP routes in your application.

Routes Inspector

What It Shows

FieldDescription
NameRoute name (e.g., app_users_index)
PatternURL pattern with placeholders (e.g., /api/users/{id})
MethodsAllowed HTTP methods (GET, POST, etc.)
MiddlewaresController/action or middleware stack handling the route

Route Testing

Test whether a URL matches any registered route directly in the panel. Enter a path like GET /api/users/42 and see:

  • Whether it matches a route
  • Which controller/action handles it

Supports inline HTTP method specification: POST /api/users (defaults to GET if omitted).

API Endpoints

MethodPathDescription
GET/inspect/api/routesList all registered routes
GET/inspect/api/route/check?route=GET /pathTest if a path matches a route

Adapter Support

AdapterSupported
SymfonyYes (via SymfonyRouteCollectionAdapterAppDevPanel\Adapter\Symfony\Inspector\SymfonyRouteCollectionAdapterAdapts Symfony's RouterInterface to the route collection interface expected by {@see \AppDevPanel\Api\Inspector\Controller\RoutingController}.final Adapter/Symfony · class)
LaravelYes
Yii 3Yes
Yii 2Yes

TIP

Routes include middleware definitions where available, so you can see the full request pipeline for each endpoint.

Released under the MIT License.