3

I am new to PHP and Laravel 5 and working on Windows, Xampp-control. My pages run perfectly almost two days but after that changes made in .blade.php files do not show on browser. Even changing images in public folder have no effect. I re-installed the browser and switched the browser from Chrome to Firefox, but no effect. I found something on internet but couldn't get it. The link is as follows:

https://bugs.php.net/bug.php?id=40568

Is it due to it or something else is happening? What should I do?

Hassan Saqib
  • 2,597
  • 7
  • 28
  • 51

1 Answers1

1

Views are cached that's why this problem is encountering. A simple solution to resolve it is to clear the cache. And you can do it by the following artisan command.

php artisan cache:clear
Hassan Saqib
  • 2,597
  • 7
  • 28
  • 51