Table image column and text column in the same column, one under the other

Is it possible to do it in another way? Or do I have to create a view column?Now i have:
Tables\Columns\TextColumn::make('number')
->prefix('#')
->label('')
->weight(FontWeight::Bold)
->grow(false),
Tables\Columns\ImageColumn::make('image')
->label('')
->visibility('private')
->disk('private')
->size(24)
->grow(false),
...............more column
Tables\Columns\TextColumn::make('number')
->prefix('#')
->label('')
->weight(FontWeight::Bold)
->grow(false),
Tables\Columns\ImageColumn::make('image')
->label('')
->visibility('private')
->disk('private')
->size(24)
->grow(false),
...............more column
With text column I can add description, but not images. Is it possible to do it in another way? Or I have to create a view column? Thanks
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?