From 950fddf9e3cfd3c04c1e9636b60fe57c23c75020 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 19 May 2018 21:06:07 -0600 Subject: [PATCH] Add partial cache config --- config/partialcache.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 config/partialcache.php diff --git a/config/partialcache.php b/config/partialcache.php new file mode 100644 index 00000000..b51517cf --- /dev/null +++ b/config/partialcache.php @@ -0,0 +1,17 @@ + true, + + // The name of the blade directive to register + 'directive' => 'cache', + + // The base key that used for cache items + 'key' => 'partialcache', + + // The default cache duration in minutes, set null to remember forever + 'default_duration' => null + +];