Formatting Tooltip to return rendered HTML instead of plain text

Hi, I am having an issue with rendering HTML on table column tooltip using accessor.

Right now on table tooltip i have this

           TextColumn::make('current_currency_price_without_discount_formatted')
                ->label(__('inputs.price'))
                ->visible(fn (): bool => Auth::user()->can('view_price_product'))
                ->money(currency: 'EUR')
                ->tooltip(fn($record) => new HtmlString($record->all_stores_prices_formatted_html))
                ->sortable(['price']),


But i still get pure html..
Was this page helpful?