for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Itstructure\GridView\Formatters;
/**
* Class ImageFormatter.
* @package Itstructure\GridView\Formatters
*/
class ImageFormatter extends BaseFormatter
{
* Format value as image.
* @param $value
* @return mixed|string
public function format($value)
return '<img src="' . $value . '" ' . $this->buildHtmlAttributes() . ' />';
}