Blade view not reflecting changes

am developing a Laravel(5.2.29) project in Windows environment and testing it on Chrome browser.
I have made some changes on a Blade file using atom text editor and then refreshed my page and noticed that suddenly it has stopped reflecting the changes (it's loading the old Blade file).


I've tried the following:
  • Restarted the browser
  • Clearing browser cache
  • Running php artisan cache:clear
  • Running composer dumpautoload
  • Deleting the Blade file (and got a view not found error). Then created a new Blade file with the same name, with no content and refreshed the page.
No matter what, the code displayed on the browser is always the same (old) version and not the content of the Blade file.
How can I solve this issue?

Answer: Clear the cache and clear the cached blade files:
php artisan cache:clear
php artisan config:clear
php artisan view:clear

Post a Comment

0 Comments