I'm working on a Laravel project (version 7.0) with PHP version 7.4.1. (OS = Windows 10)
I have a problem that's been bugging me since I started a Laravel project. Whenever I run php artisan view:clear and reload the page to see my updates, the page doesn't always update. Sometimes it does, sometimes I have to wait a few minutes before reloading and seeing if it changes. Development is becoming increasingly frustrating due to all this "down time". From my knowledge, the views are supposed to be updated right away...any ideas on what the problem is?
to check it is having an effect, examine the storage/framework/views folder before and after the command. All the command does is delete all the files in that folder
I've tried hard refresh, but without success. view:clear does clean the entire storage/framework/views folder, but it still doesn't work. I do notice that if I delete what's under the session folder, though, everything's cleared and the newest version loads. Is there a shortcut for clearing the session folder?