© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
3 replies
Abi

binding an array to a repeatable entry on infolists

I have the following data that is stored as json/array on the model

$data->family = [
    "names" => [
        "John Doe",
        "Jane Doe",
        "Justin Doe"
    ]
];
$data->family = [
    "names" => [
        "John Doe",
        "Jane Doe",
        "Justin Doe"
    ]
];


I am using the infolists and here is the code for it, but I am not sure what is the key I specific for the TextEntry on the RepeatableEntry schema. I cannot manipulate the data in the json as it is retrieved from an API. Any advice?

 return $infolist->record($this->data)
            ->schema([  
                RepeatableEntry::make('family.names')
                    ->schema([
                        TextEntry::make('?')
                    ])
            ])
 return $infolist->record($this->data)
            ->schema([  
                RepeatableEntry::make('family.names')
                    ->schema([
                        TextEntry::make('?')
                    ])
            ])
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

Sorting Repeatable Entries on Infolists
FilamentFFilament / ❓┊help
2y ago
repeatable entry
FilamentFFilament / ❓┊help
13mo ago
repeatable entry
FilamentFFilament / ❓┊help
2y ago
Use repeatable entry to display a non-database array
FilamentFFilament / ❓┊help
3y ago