How to clear cache in Laravel?
You need to run npm run dev
on your development server and npm run prod
on your production server, to generate/update the JS and CSS.
If you want clear all cache, stored in /storage/cache:
php artisan cache:clear
And to clear route cache:
php artisan route:clear
To clear view cache:
php artisan view:clear