How does Laravel Views Cache works?
问题 According to Laravel's documentation (https://laravel.com/docs/5.3/blade#introduction) views are compiled into plain PHP code and cached until they are modified but when are they re-compiled? I have my project in a production environment and when I deploy changes are automatically showed, I don't need to clear views cache or something similar. Are views re-compiled automatically (in that case, when does it happen?) or do I haven't cache enabled? 回答1: By default all views are compiled/cached .