So, I am trying to load a js file into a page, the file does not load when I use simple HTML <script> tag, for example
<script src="js/laravel.js"></script>
But it loads when I use blade,
{!! Html::script('js/laravel.js') !!}
But the tricky part is, in some pages the simple HTML <script> loads the js file fine but in some it does not work at all.
publicfolder?