Add a section with a DisplayDatatables display with a column type 'link'
Set custom attributes to the link like this:
->setLinkAttributes(['class' => 'btn btn-xs'])
What is expected?
<a class="btn btn-xs">
What is actually happening?
<a class="btn btn-xs">
The template file "default.column.link" should use {!! !!} instead of {{ }} for attributes. It is safe, since attributes builder class already uses htmlentities().
Version in Composer.json
"laravelrus/sleepingowl": "4.*@dev" (actual - 4.99.99)
Steps to reproduce
What is expected?
What is actually happening?
The template file "default.column.link" should use {!! !!} instead of {{ }} for attributes. It is safe, since attributes builder class already uses htmlentities().