Encore\Admin\Form\Field::formatAttributes PHP Method

formatAttributes() protected method

Format the field attributes.
protected formatAttributes ( ) : string
return string
    protected function formatAttributes()
    {
        $html = [];
        foreach ($this->attributes as $name => $value) {
            $html[] = "{$name}=\"{$value}\"";
        }
        return implode(' ', $html);
    }