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
