Prefix before icon in tables
Hello,
Is it possible to display a prefix before the icon of a table cell?
Thanks!
Is it possible to display a prefix before the icon of a table cell?
Thanks!

Tables\Columns\TextColumn::make('field_with_icon_and_prefix')
->prefix('(this needs to be before the icon)')
->icon(fn (ThirdPartyContact $record): string => 'heroicon-o-user')->view('custom-column')<!-- resources/views/custom-column.blade.php -->
<div class="flex">
<div>prefix</div>
<div> @svg('heroicon-o-user', ['class' => 'h-5 w-5'])</div>
<div>{{ $getState() }}</div>
</div>