How to refactor this TextColumn badge link?

TextColumn::make('playlists.name')
    ->badge()
    ->url(function (Song $record, $state): string {
        $playlist = Playlist::query()->where('name', $state[0])->first();

        return route('playlists.edit', $playlist);
    })
    ->label(__('Playlists'))
,
Was this page helpful?