Laravel Clear Cache Using Artisan
In This tutorial Simply clear cache from the command line (CLI). we will discuss how to clear cache from blade (views), routes, config, etc using the (CLI) and artisan command.
we need to make cache in laravel projects for better completion. But if our application is development mode then what we want to get cured due to the cache. Then this time we need to clear the cache.
List of the cache clear commands
Use the below command and clear your routes cache :
php artisan route:cache
Use the below command and clear your application cache :
php artisan cache:clear
Use the below command and clear your config cache :
php artisan config:cache
Use the below command and clear your view (blade) cache :
php artisan view:clear
php artisan optimize
We do not access SSH on shared hosting servers, then we can all clear the cache by typing the code in route file. Go to your web.php file and put below code for clear cache of your application :
//Clear route cache: Route::get('/route-cache', function() { $exitCode = Artisan::call('route:cache'); return 'Routes cache cleared'; }); //Clear config cache: Route::get('/config-cache', function() { $exitCode = Artisan::call('config:cache'); return 'Config cache cleared'; }); // Clear application cache: Route::get('/clear-cache', function() { $exitCode = Artisan::call('cache:clear'); return 'Application cache cleared'; }); // Clear view cache: Route::get('/view-clear', function() { $exitCode = Artisan::call('view:clear'); return 'View cache cleared'; });
I hope it can help you...
Leave a Reply