/**
  * Check if an attribute is a boolean attribute.
  *
  * @param string $attribute
  *
  * @return bool
  */
 private function isBooleanAttribute($attribute)
 {
     return $this->repository->getAttributes()->search(trim($attribute)) || Html::isDataAttribute($attribute);
 }