Skip to main content

Command Palette

Search for a command to run...

Laravel Clear Cache Using Artisan Command

Published
1 min read
W

The websolutionstuff is to help for beginner programmers who want to start career in web development or learn web development technologies or languages.

In this tutorial I am giving information about laravel artisan command which can help you to clear you application's cache, route cache, clear your application's view, and clear Your config cache as well as.

We can run these all command in commandline interface (CLI) as well as we can create one function which has stored all these function and run direct this function without open your terminal.

So,let's start...

php artisan config:cache

php artisan route:cache

php artisan cache:clear

php artisan view:clear

Above all commands are use only in your local command window , As we don't have an access of SSL on shared hosting servers. So, we can also clear the cache by typing the code in route file. Go to your routes/web.php file and put below code.

<?php

Route::get('/clear-cache', function() {
     $exitCode = Artisan::call('config:cache');
     $exitCode = Artisan::call('cache:clear');
     $exitCode = Artisan::call('view:clear');
     $exitCode = Artisan::call('route:cache');
});

After adding above code we can clear all cache, view, route, config in local environments as well as in live server also.

For run this route you need to open your browser and after add this route like below.

http://localhost:8000/clear-cache OR http://your_site_name/clear-cache

More from this blog

websolutionstuff

29 posts