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

image() public method

Wrap value as a image.
public image ( integer $width = 200, integer $height = 200 )
$width integer
$height integer
    public function image($width = 200, $height = 200)
    {
        $wrapper = "<img src='/{\$value}' style='max-width:{$width}px;max-height:{$height}px' class=\\'img\\' />";
        $this->htmlWrapper($wrapper);
        return $this;
    }