© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•9mo ago•
3 replies
valeum

Infolist RepeatableEntry with an Array

Hello everyone,

I've already searched through the documentation and various sources, but unfortunately I couldn't find a solution to my problem.

I'm trying to display dynamic data within an Infolist using
RepeatableEntry
RepeatableEntry
. Here is a minimal example of my code:

Infolists\Components\RepeatableEntry::make('custom_links')
    ->label('Links')
    ->getStateUsing(fn() => [
        ['label' => 'Google', 'url' => 'https://google.com'],
        ['label' => 'GitHub', 'url' => 'https://github.com'],
    ])
    ->schema([
        Infolists\Components\TextEntry::make('label')->label('Title'),
        Infolists\Components\TextEntry::make('url')->label('Link'),
    ]),
Infolists\Components\RepeatableEntry::make('custom_links')
    ->label('Links')
    ->getStateUsing(fn() => [
        ['label' => 'Google', 'url' => 'https://google.com'],
        ['label' => 'GitHub', 'url' => 'https://github.com'],
    ])
    ->schema([
        Infolists\Components\TextEntry::make('label')->label('Title'),
        Infolists\Components\TextEntry::make('url')->label('Link'),
    ]),

Even with this static array, nothing is displayed. In the next step, I would like to use $record to access the current record's data dynamically.

Does anyone know if this is possible in general, and if so, what I'm doing wrong here?

Thank you very much for your help!
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Infolist RepeatableEntry with an Array
FilamentFFilament / ❓┊help
3y ago
infolist with RepeatableEntry
FilamentFFilament / ❓┊help
3y ago
Problem showing array in Infolist using RepeatableEntry
FilamentFFilament / ❓┊help
3y ago
Infolist with Array example?
FilamentFFilament / ❓┊help
3y ago