Reputation: 1507
i have been working on my project for several week. everything was fine. but today all of a sudden i can not load some of my changed views (some i can change and get result). even if i change the controller, its still now working. according to SO and some other site i have tried followings
what did i miss. thanks in advance.
Upvotes: 1
Views: 3754
Reputation: 163768
Run php artisan view:clear
command to clear views cache. If this won't help, delete all php
files in storage/framework/views
directory.
Another thing you should do is to check if you're calling the view you want. It happens in big projects with a similar views. Use Laravel Debugbar to display actually loaded views.
Upvotes: 1