I have the following structure:
routes/web.php
foreach (File::allFiles(__DIR__.'/web') as $file) {
require $file->getPathname();
}
And some routing files separated per module:
routes/web/moduleA.php
routes/web/moduleB.php
...
Some module files have multiple Route::group() defined.
Before I open those files I don't have route names completion, after I opened them once it shows me the routes.
Somehow this wasn't an issue this plugin
Are there any known issues if I run both plugins together?