CSS & JS not loading issue because of server cache
HTML/PHP
+ <script src="js/main.js?v=1213254325"></script>
+ 1213254325 can change into any value
Laravel
+ webpack.mix.js
mix.js('resources/js/main.js','public/js').version();
+ npm run watch
+ add below code to blade file
<script src="{{ mix('js/main.js') }}"></script>