parent = $show; } /** * @return array|mixed|string|null */ public function key() { if ($this->primaryKey) { return $this->primaryKey; } return $this->parent ? $this->parent->key() : null; } /** * @return void */ public function setupHtmlAttributes() { $this->addHtmlClass($this->style); parent::setupHtmlAttributes(); } }