I'm adding a JS file in a blade @section using Blade syntax and Laravel asset links, yet PhpStorm is flagging it as 'Attribute value not closed' with red squiggly lines in the places shown below. It doesn't recognise that the 'src' element is closed, so code colouring is also wrong.
<script type='text/javascript' src='{{ asset("js/dashboard.js") }}'></script>
~ ~
I know I can turn the error check off in the settings, but the code colouring will still be wrong, so doesn't resolve the issue.


src="{{ asset('js/dashboard.js') }}"javascript. Perhaps that label is reserved?