hi sir i am try to show image in one column
like this
->addColumn('product_brand_logo', function ($product_brand) {
return '<img src="{{ URL::to('uploads/users')'.$image->image.'}}" border="0" width="40" class="img-rounded" align="center" />';
in out put it will show like this ==>{{URL::to('uploads/users')imagename.png}}
You've to make the product_brand_logo column raw with: rawColumns(['product_brand_logo'])
thanks sir my problem solved
Most helpful comment
thanks sir my problem solved