© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•5mo ago•
3 replies
frame

Access current item in RepeatableEntry

Is there something between $record (all the items) and $state (a field of the current item) in RepeatableEntry? I can access another field if I add a hidden entry for it and reference that entry with $get, but maybe there's a better way? 😺
RepeatableEntry::make('items')
    ->schema([
        TextEntry::make('type')
            ->hidden(),
        TextEntry::make('link')
            ->hidden(),
        TextEntry::make('name')
            ->label(fn (Get $get) => $get('type'))
            ->url(fn (Get $get) => $get('link')),
    ]),
RepeatableEntry::make('items')
    ->schema([
        TextEntry::make('type')
            ->hidden(),
        TextEntry::make('link')
            ->hidden(),
        TextEntry::make('name')
            ->label(fn (Get $get) => $get('type'))
            ->url(fn (Get $get) => $get('link')),
    ]),
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

Access to current row in RepeatableEntry?
FilamentFFilament / ❓┊help
10mo ago
Current model in RepeatableEntry
FilamentFFilament / ❓┊help
2y ago
Access parent record in RepeatableEntry
FilamentFFilament / ❓┊help
3y ago
how to access current state of repeater item?
FilamentFFilament / ❓┊help
2y ago