Hi,
Is there any possibility to send html in setRowData? Something like this:
->setRowData([
'contact' => function ($contact) {
return "<li>$contact->name</li>";
},
])
Not sure but maybe try using HtmlString.
->setRowData([
'contact' => function ($contact) {
return new HtmlString("<li>$contact->name</li>");
},
])
Most helpful comment
Not sure but maybe try using HtmlString.