Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

TimiAde's avatar

Clear cache in Laravel

I want to clear all cache in my laravel application. How can i do it.

0 likes
5 replies
martinbean's avatar

@timiade Do you even bother trying anything yourself or searching your problem before posting?

You could have literally put your question in Google and gotten an answer.

1 like
TimiAde's avatar

@martinbean it is Laravel excel that is giving me real problems I have cleared all the caching but still the issue persists

Mikegk's avatar

Use php artisan like:

php artisan cache:clear
php config:clear
php route:clear

...to name a few. You can also use "php artisan" to display all available commands. Next you could search for cache / clear...

Please or to participate in this conversation.