How to use InfoList repeatable entry to show files with clickable links

I am saving files in the table as json.
[
"dile1.pdf",
"file2.pdf"
]


I wish to use Repeater in infolist builder to text columns with clickable links , but as you see there's no pointer in this array
Components\RepeatableEntry::make('uploads')
  ->schema([
     Components\TextEntry::make('uploads.*'),
  ]),

'*' ??
What do I do ?
Also Simple list entry plugin is also not working
Thanks,
Solution
Found the solution
Components\RepeatableEntry::make('uploads')
  ->schema([
     Components\TextEntry::make(''),
  ]),

just leave TextEntry empty.
Was this page helpful?