Encore\Admin\Grid\Column::badge PHP Method

badge() public method

Wrap value with badge.
public badge ( string $style = 'red' )
$style string
    public function badge($style = 'red')
    {
        $wrapper = "<span class='badge bg-{$style}'>{value}</span>";
        $this->htmlWrapper($wrapper);
        return $this;
    }