0
I am using Vs code to edit HTM,CSS,PHP. code when I edit code with extension . html and type the html or css tags, it autocompletes showing the command options normally. When this code is performed in a Slide in the Slide, main example.blade.php the autocomplete does not work. This happens only in vscode, eclipse for example works perfectly. Someone has a tip for this function to work:
I marked it as duplicate, because my answer in the other question fits both cases. You can add
"files.associations": { "*.blade.php" : "html" }
or"emmet.includeLanguages": {"blade":"html"}
in hissettings.json
.– Wallace Maxters