A right click on page and view page source should show if it's loaded, and clicking link should show the js.
If that is not the case, check that the link is correct.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I need to link to an external Javascript file so that my Laravel Nova component can work. In plain HTML or even plain Laravel this would be easy as there is an app layout file:
<script type='text/javascript' src='https://cdn.yodlee.com/fastlink/v3/initialize.js'></script>
But doing this in Nova is beyond my current skill set as there is no tangeble app layout that I can see. So I want to try to include the Javascript when my VueJS component loads. I'm happy to do it some other way as well but I can't figure it out.
Googling this appears to be hard because almost all results I get are people asking how to import (e.g. make part of). I can't do that. I need to directly link to my vendor's Javascript otherwise things don't work. The external Javascript does security stuff and loads an iFrame. Trying to load that in card.js freezes Nova completely just past liftoff.
My attempts have been exploring nova.mix.js and card.js and now webpack.mix.js .
But I simply don't know what to do next.
Please or to participate in this conversation.