public function getSiteStat() { return Cache::remember(self::CACHE_KEY, self::CACHE_MINUTES, function () { $entity = new StatEntity(); $entity->topic_count = Topic::count(); $entity->reply_count = Reply::count(); $entity->user_count = User::count(); return $entity; }); }