'reloadCacheStats']; public function mount() { $this->reloadCacheStats(false); } public function reloadCacheStats($notify = true) { $cacheManagerService = new CacheManagerService($this->driver); $memcachedStats = $cacheManagerService->getMemcachedStats(); $this->memcachedStats = $memcachedStats['info']; if ($notify) { $this->dispatch( 'notification', target: $this->targetNotify, type: $memcachedStats['status'], message: $memcachedStats['message'] ); } } public function clearCache() { $cacheManagerService = new CacheManagerService($this->driver); $message = $cacheManagerService->clearCache(); $this->reloadCacheStats(false); $this->dispatch( 'notification', target: $this->targetNotify, type: $message['status'], message: $message['message'], ); $this->dispatch('reloadCacheStatsEvent', notify: false); $this->dispatch('reloadSessionStatsEvent', notify: false); $this->dispatch('reloadCacheFunctionsStatsEvent', notify: false); } public function render() { return view('vuexy-admin::livewire.cache.memcached-stats'); } }