We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48dcc35 commit 7a0649cCopy full SHA for 7a0649c
config/larecipe.php
@@ -69,8 +69,8 @@
69
*/
70
71
'cache' => [
72
- 'enabled' => env('APP_ENV') == 'staging' && env('APP_DEBUG') == false ? true : false,
73
- 'period' => 25200 // 7 days -- value in minutes
+ 'enabled' => (env('APP_ENV') == 'staging' && env('APP_DEBUG') == false) ? true : false,
+ 'period' => (env('APP_ENV') == 'staging' && env('APP_DEBUG') == false) ? 25200 : 0 // 7 days -- value in minutes
74
],
75
76
/*
0 commit comments