Encore\Admin\Widgets\Box::content PHP Method

content() public method

public content ( $content )
    public function content($content)
    {
        if ($content instanceof Renderable) {
            $this->attributes['content'] = $content->render();
        } else {
            $this->attributes['content'] = (string) $content;
        }
        return $this;
    }