Home > Back-end >  Is there any way to run laravel cache, view, route clear in one time?
Is there any way to run laravel cache, view, route clear in one time?

Time:01-25

I am building a small app but I always need to clear all caches. How can do it or is there any way to run laravel cache, view, route clear in one time?

Thank you.

CodePudding user response:

I believe you are searching for php artisan optimize

CodePudding user response:

try php artisan optimize:clear to clear the cache and php artisan optimize to cache again

  •  Tags:  
  • Related