withMeta(['html' => $html]);
}
/**
* Full width
*/
public function fullWidth(): self
{
return $this->withMeta(['fullWidth' => true]);
}
/**
* Alert if there is message
*
* @var string
*/
public function alert(string $message): self
{
return $this->withMeta(['alert_message' => $message]);
}
/**
* Hide
*
* @param bool|bool
*/
public function hidden(bool $hidden = true): self
{
return $this->withMeta(['hidden' => $hidden]);
}
}