Laravel Artisan Commands to Clear Cache

vinoy · · 3104 Views

In this post, You will learn how to clear route cache, application cache, config cache, view cache, and reoptimized class in a Laravel using the artisan commands.

Clear Route Cache in Laravel

php artisan route:cache

Clear Application Cache in Laravel

php artisan cache:clear

Clear Config Cache in Laravel

php artisan config:cache

Clear View Cache in Laravel

php artisan view:clear

Reoptimize Class

php artisan optimize

Conclusion

Now you have learned how to utilize the php artisan command to clear the cache from your Laravel application. Go forth and try these super wonderful artisan commands and let us know how these commands are helping you.

0

Please login or create new account to add your comment.

0 comments
You may also like:

PHP OPCache: The Secret Weapon for Laravel Performance Boost

OPCache, a built-in PHP opcode cache, is a powerful tool for significantly improving Laravel application speed. This guide will demonstrate how to effectively utilize OPCache to (...)
Harish Kumar

How to Use DTOs for Cleaner Code in Laravel, Best Practices and Implementation Guide

When developing APIs in Laravel, ensuring your responses are clear, concise, and consistent is crucial for creating a maintainable and scalable application. One effective way to (...)
Harish Kumar

Data Type Validation in Laravel Collections with the `ensure()` Method

Before moving on to the ensure() method, let us first know what Laravel Collections actually are. These are wrappers of PHP arrays, offering a fluent and helpful interface in interacting (...)
Harish Kumar

PHP Generators: Efficient Data Handling and Iteration Techniques

PHP Generators offer a powerful and memory-efficient way to handle large datasets and complex iteration scenarios in your applications. They provide a more elegant solution compared (...)
Harish Kumar

Compress and Download Files in Laravel Using ZipArchive with Examples

In web development, file compression is essential for optimizing data transfer and storage. Laravel provides tools for creating and downloading compressed files. This guide explores (...)
Harish Kumar

Implementing Multi-Authentication with Guards in Laravel

This guide provides a detailed explanation of how to implement multi-authentication using guards in a Laravel application. This is useful for applications that need to support (...)
Harish Kumar