Replies: 1 comment 1 reply
-
I had worked with laravel livewire in the past, as far as I know. Laravel support in other text editors are very limited. Which makes sense because It should be easier to resolve in a file system level than language server level e.g. go through the route files and emit to the auto completion list. Even in language server level, I reckon it should be addressed via php lsp. Just a hint/FYI: |
Beta Was this translation helpful? Give feedback.
-
Hi
I'm mainly using Vue with laravel and Inertia.
Laravel exposes named routes (such as "posts.index"), and those routes names can be used in vue with the
route('posts.index')
shortcut.In phpstorm, those named routes are resolved and phpstorm allows you to click on it to jump to the corresponding controller. You even have autocompletion on routes names ;)
But phpstorm has big issues when the project becomes to be a bit too big and my (despite brand-new M3 cpu) macbook struggles ... So I'm trying to switch to vscode and I miss those little things ...
Any ways to enable those links and autocompletion ?
Beta Was this translation helpful? Give feedback.
All reactions