In storm when you type <x it gives me an auto-complete list of all of my blade components.
This is super nice but I have to right click and add these all individually for it to remember them. I'm assuming they are stored on the project. My question was really querying whether there was a better way for storm to detect these? Or a bulk way to add them.
They are probably stored in .idea folder inside project root. Check there and use some snippet to insert new ones, or create some script which will read content of components folder and populate appropriate items in .idea folder.
I think this is enabled when you check these check-boxes.
PHPStorm ->Settings -> Languages & frameworks -> php -> laravel There you can select "enable plugin for this project"
<x-MY-COMPONENT></x-MY-COMPONENT>
will have a small squiggle under it the first time you write it, which you can then add to "Custom HTML tags" so that the next time you type <x a list of the <x tags will display allowing you to select them.
Not exactly the nice autocomplete the old component/blade pathing gives you but better than nothing?
Just discovered Laravel Idea plugins ! Thanks for all who suggested it! I would complement by saying, you might also need AlpineJS support from another plugin "Alpine.js Support" then you are all se