I am trying to load my app.js file inside my welcome.blade.php but I get the following error:
Call to undefined function asset()
This is the instruction I used <script type="text/javascript" src="{{ asset('public/js/app.js') }}"></script>
What can be the problem? I also tried to run the same line without asset() and it does not work. My .js file is in the location I specified.
Thank you so much!
{ { Html::script('public/js/app.js') }}and it seems like it does not recognize the Blade syntax either.asset('public/app.js')fromphp artisan tinkerand say if it works?