How to clear Laravel cache

Written by Yujin Boby

Edit in WordPress

To clear the Laravel cache, run the command

php artisan cache:clear

You can also delete compiled files from

rm -rf bootstrap/cache/*

Back to Laravel