Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions views.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,3 @@ Compiling views during the request negatively impacts performance, so Laravel pr
You may use the `view:clear` command to clear the view cache:

php artisan view:clear

Typically, you can assume that views will **never** be modified in your production environment. Therefore, you can usually disable the file modification checks Laravel makes to determine if views are expired by modifying the `expires` option within your `view` configuration file:

'expires' => env('APP_ENV') !== 'production',

> {note} You must run `php artisan view:cache` during your deployment process to disable checking for expired views.