$this->getTableEmptyStateActions(), ); $this->cachedTableEmptyStateActions = []; foreach ($actions as $action) { $action->table($this->getCachedTable()); $this->cachedTableEmptyStateActions[$action->getName()] = $action; } } public function getCachedTableEmptyStateActions(): array { return $this->cachedTableEmptyStateActions; } public function getCachedTableEmptyStateAction(string $name): ?Action { return $this->getCachedTableEmptyStateActions()[$name] ?? null; } protected function getTableEmptyState(): ?View { return null; } protected function getTableEmptyStateActions(): array { return []; } protected function getTableEmptyStateDescription(): ?string { return null; } protected function getTableEmptyStateHeading(): ?string { return null; } protected function getTableEmptyStateIcon(): ?string { return null; } }