Bootstrap\View\Helper\BootstrapHtmlHelper::badge PHP Method

badge() public method

Create a Twitter Bootstrap span badge.
public badge ( $text, $options = [] )
    public function badge($text, $options = [])
    {
        $options = $this->addClass($options, 'badge');
        return $this->tag('span', $text, $options);
    }