Пример #1
0
 /**
  * Count all records
  * @return int
  */
 public function countAll()
 {
     return $this->cache->tags($this->entityName, 'global')->remember("{$this->locale}.{$this->entityName}.countAll", $this->cacheTime, function () {
         return $this->repository->countAll();
     });
 }