I am facing a problem displaying image in data table. The below code is displaying the whole html(HTML is not getting rendered) in side the column. It used to work with laravel 5.3 and below. How to get it working with laravel 5.4. Thanks.
$data = Member::query()
->get();
return Datatables::of($data)
->addColumn('picture', function ($data) {
return '<img src=" '.$data->picture.' "/>';
})
->make(true);