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


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
Was this page helpful?