Example #1
0
 /**
  * Get the cache object with tags assigned, if applicable.
  *
  * @return \Illuminate\Cache\CacheManager
  */
 protected function getCache()
 {
     $cache = $this->model->getCacheManager()->driver($this->cacheDriver);
     return $this->cacheTags ? $cache->tags($this->cacheTags) : $cache;
 }