Backpack for Laravel - Column with formatted text

937 views Asked by At

I am wondering how to add a column with formatted text. I need to add
tag to make multi line column in show Operation.

1

There are 1 answers

0
peter.nr On BEST ANSWER

I found it:

$this->crud->addColumn(['name' => 'myName', 'label' => 'myLabel', 'type' => 'text', 'escaped' => false]);

So add index 'escaped' with value false.