Laravel 视图在调整日期或时间后不更新

Laravel view don't update after adjusting date or time

我在 laravel 中创建密码到期(90 天),然后我调整我的当前日期并将其设置为 90 天(当更改视图时它仍在更新),测试后我返回我的当前日期和更新一些视图,但视图不再更新。 我的程序:

Step 1: Go to your laravel project

Step 2: change computer time (ex: if 1/29/2018 now, change it to 7/29/2018)

Step 3: edit your laravel project, check if your view is updating (if yes proceed to step 4 )

Step 4: back your current date, then update your code in view again, its not updating anymore

我正在使用 IIS 作为我的服务器,laravel 5.1,php 5.5.

我已经尝试使用它了。

composer dump_autoload

composer clear-cache

php artisan clear-compiled

php artisan config:clear

php artisan cache:clear

我已经尝试清除浏览数据了。

非常感谢。

Laravel 缓存视图文件。如果视图的最后修改时间大于缓存文件,它将删除缓存文件并创建一个新文件。当您在当前时间之后设置 90 日期时,它会创建一个带有未来时间戳的新缓存文件。但是您将其还原,缓存文件的最后修改日期大于视图的最后修改日期。所以它不会更新缓存文件。所以运行命令php artisan view:clear删除缓存文件