How to link to a resource from a repeater entry?

I'm listing articles an author has published under the repeater entry, and can't work out how to link to the article they authored.
Solution
you can do this
TextEntry::make('field')
->url(fn ($record): string => YourResource::getUrl('edit', ['record' => $record->id]))
Was this page helpful?