Any idea how to add a third row?
In the documentation there is a method called "description" but I need another row
π
I need something like this π
Solution:Jump to solution
You could probably just add a line break by returning an HtmlString ...
```php
TextColumn::make('foo')
->description(fn (Model $record): string => new HtmlString($record->thing1 . '<br>' . $record->thing2)),...
3 Replies
Solution
You could probably just add a line break by returning an HtmlString ...
or using htmlstring add them in
<div>
this way you will be able to style them if neededWorks perfectly, thanks π