How to clear Laravel cache
Written by Yujin Boby
Edit in WordPressTo 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
Written by Yujin Boby
Edit in WordPressTo 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