Took this one step further and removed ->namespace($this->namespace)
from RouteServiceProvider then did this.
1use App\Http\Controllers\MeController;2 3Route::get('/me', MeController::class);
Now I can click through to the controller in my IDE.
You don't need to remove that piece of code to do that tho.
Also phpstorm allows you to click through to the class even if you type "MeController".
waaw... so cool
To anyone interested in this subject, Adam Wathan had a talk about breaking up controllers for clarity at Laracon US 2017, video available at https://streamacon.com/video/laracon-us-2017/day-1-adam-wathan.
Some similary have laracasts in this video https://laracasts.com/series/php-bits/episodes/6 to go deeper.