#INFOLIST TO VIEW DOCUMENT
7 messages · Page 1 of 1 (latest)
Have you tried repeatable entry?
what is the component to click button for view the document?
are you talking about a view page?
no, view uploaded view
i solved with below tricks
$document_entries = [];
foreach($documents as $index => $document){
$document_entries[] = \Filament\Infolists\Components\TextEntry::make("document_{$index}")
->label('Document')
->state($document->name)
->url($document->url)
->openUrlInNewTab();
}