Description
I use Laravel. I try to jump to controller's method from routes, but can't do it. Controller's method "is not found". Example:
<?php
use App\Http\Controllers\IndexPageController;
use Illuminate\Support\Facades\Route;
Route::get('/', [IndexPageController::class, 'indexPage']);
When I put editor cursor on "indexPage" and trying go to definition / implementation or references - nothing is found. How can I fix it? Or it is not implemented yet?
Use case
In large projects, I jump to controller methods quite often.
Proposed solution
No response
Alternatives considered
No response
Code example
Description
I use Laravel. I try to jump to controller's method from routes, but can't do it. Controller's method "is not found". Example:
When I put editor cursor on "indexPage" and trying go to definition / implementation or references - nothing is found. How can I fix it? Or it is not implemented yet?
Use case
In large projects, I jump to controller methods quite often.
Proposed solution
No response
Alternatives considered
No response
Code example