Encore\Admin\Grid\Row::getHtmlAttributes PHP Method

getHtmlAttributes() public method

Get attributes in html format.
public getHtmlAttributes ( ) : string
return string
    public function getHtmlAttributes()
    {
        $attrArr = [];
        foreach ($this->attributes as $name => $val) {
            $attrArr[] = "{$name}=\"{$val}\"";
        }
        return implode(' ', $attrArr);
    }