Clear cache in Laravel

Aug 31, 2019, Tags - Code Snippets Laravel

Here is the list of commands to clear all types of cache in the Laravel project.

  1. Clear Application Cache 
    php artisan cache:clear
  2. Clear Config Cache 

    php artisan config:clear
  3. Clear Route Cache

    php artisan route:clear
  4. Clear Compiled View Files

    php artisan view:clear 



Gautam Kumar

Editor

Leave a comment