/**
  * @return bool|mixed|null|string
  */
 public function output()
 {
     if ($this->isHidden()) {
         return;
     }
     if ($this->withWidgets) {
         $this->applyWidgets();
     }
     return parent::output();
 }