A VS Code extension that shows Laravel route information (HTTP method, URI, route name) above controller methods via CodeLens. No annotations are written into your source files—everything is displayed only in the editor.
Features
CodeLens above controller methods: When you open a Laravel controller, each method that is bound to a route shows a line above it with the corresponding route (e.g. GET /users (users.index)).
No file changes: Route info is shown only in the UI; your PHP files stay untouched.
Refresh on demand: Use the command Laravel Routes: Refresh route list to reload routes after changing routes/*.php.
Requirements
VS Code 1.90.0 or newer
A Laravel project with php and artisan available in the environment (the extension runs php artisan route:list --json in the workspace root)