open Record URL from $table in new tab

Hello, i have a custom URL on a documents table
return $table
  ->recordUrl(fn ($record): string => $record->getUrl())

What is the right way to open the URL in a new tab?
In the table index.blade is the
\Filament\Support\generate_href_html($recordUrl)
called, buth without parameters.
Is it possible to implement this or maybe overrite the generate_href_html for now?
Solution
hum.. The openUrlInNewTab method is available on table columns, TextColumn for example
->url(fn (Model $record): string => '...')
->openUrlInNewTab()
Was this page helpful?