How to put a link for each badge in TextColumn?

I would like to enable the ability to click on each playlist in the column and open its corresponding link. Below is the current PHP code snippet for creating the column:
TextColumn::make('playlists.name')
    ->badge()
    ->label(__('Playlists'))
    // ->getStateUsing(function (Song $record) {
    //     dd($record);
    // })
    // ->url()
,

How can I modify this code to achieve the desired functionality of clicking on each playlist to open its link?
Was this page helpful?