| Closure> */ protected array $extraTopbarAttributes = []; /** * @param array | Closure $attributes */ public function extraTopbarAttributes(array | Closure $attributes, bool $merge = false): static { if ($merge) { $this->extraTopbarAttributes[] = $attributes; } else { $this->extraTopbarAttributes = [$attributes]; } return $this; } /** * @return array */ public function getExtraTopbarAttributes(): array { $temporaryAttributeBag = new ComponentAttributeBag; foreach ($this->extraTopbarAttributes as $extraTopbarAttributes) { $temporaryAttributeBag = $temporaryAttributeBag->merge($this->evaluate($extraTopbarAttributes)); } return $temporaryAttributeBag->getAttributes(); } public function getExtraTopbarAttributeBag(): ComponentAttributeBag { return new ComponentAttributeBag($this->getExtraTopbarAttributes()); } }