This website collects cookies to deliver better user experience
app.js clashing with other js files in laravel
app.js clashing with other js files in laravel
You are probably here because some aspect of your laravel javascript dependent webpage isn't displaying properly as it should because you think that some js files included in your layout/home page(e.g layout/app.blade.php) for example, are somewhat clashing. Here is a quick solution
The problem could be because of the default laravel app.js. Sometimes, removing defer flag from the app.js script tag will work but it may be that there is this other aspect of your laravel web page that depends on it, especially if you use vuejs in your laravel app. So in that case, you would want app.js and others_scripts.js to be included.
Three quick solutions:
Solution 1
### Remove the defer flag from the script tag.
from this: