Home > Net >  Laravel View Cache keeps interrupting
Laravel View Cache keeps interrupting

Time:12-02

I'm doing my thing in my normal view blade file, but when i edit my code and save it, it doesn't update. I found out that the view cache stored in /storage/framework/views keeps interrupting. Whatever i change in my normal blade file doesn't change the output. It only reacts to my cache, which doesn't update. I've already cleared my cache, but it doesn't work, it keeps coming back. Is there any way i can ignore or delete the view cache?

CodePudding user response:

php artisan cache:clear

Try this.

CodePudding user response:

   php artisan clear
   php artisan route:clear
   php artisan cache:clear

Run the above codes in your terminal it should do the trick, if it persists try reloading your editor.

  • Related