partialcache.php 358 B

1234567891011121314151617
  1. <?php
  2. return [
  3. // Enable or disable partialcache alltogether
  4. 'enabled' => true,
  5. // The name of the blade directive to register
  6. 'directive' => 'cache',
  7. // The base key that used for cache items
  8. 'key' => 'partialcache',
  9. // The default cache duration in minutes, set null to remember forever
  10. 'default_duration' => null,
  11. ];