skip to Main Content

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?

3

Answers


  1. Chosen as BEST ANSWER

    Thanks for trying to help! The issue is gone now. Somehow i had 2 of the same blade files and i edited the wrong one, which is really weird. I don't know how i had 2 of the same blade files. I deleted one and now it works fine. Really weird though.


  2. php artisan cache:clear
    

    Try this.

    Login or Signup to reply.
  3.    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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search