0👍
I solved the problem after analyzing the code, The problem is that Laravel Mix saves files in the public directory but is not called in the layout
<script src="{{ asset('js/app.js') }}" defer></script>
TO
<script src="{{ asset('public/js/app.js') }}" defer></script>
Source:stackexchange.com