laravel - Blade view not reflecting changes -
i developing laravel(5.2.29) project in windows environment , testing on chrome browser.
i have made changes on blade file using atom text editor , refreshed page , noticed has stopped reflecting changes (it's loading old blade file).
i've tried following:
- restarted browser
- clearing browser cache
- running
php artisan cache:clear
- running
composer dumpautoload
- deleting blade file (and got view not found error). created new blade file same name, no content , refreshed page.
no matter what, code displayed on browser same (old) version , not content of blade file.
how can solve issue?
in order avoid parsing of blade files on each reload, laravel caches views after blade processed. i've experienced situations source (view file) updated cache file not "reloaded". in these cases, need delete cached views , reload page.
the cached view files stored in storage/framework/views
.
Comments
Post a Comment