How to clear all of the different Laravel cache types using the Laravel Artisan console.
The application cache or simply said as “cache” is the data retrieval or processing tasks that are cached to speed up the application. Most often these are set on a time expiry however to destroy all of the Laravel application cache run:
php artisan cache:clear
After modifying any of your routes file you will need to clear the route cache this can be done with the following:
php artisan route:clear
To refresh your config cache use:
php artisan config:clear
Not often needed as Laravel can pick up on view changes and compile the new view automatically, however you can manually clear the view cache
php artisan view:clear
If caching Laravel events you can destroy the cache with:
php artisan event:clear
An all in one command to clear the above cache types at once
php artisan optimize:clear
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…