© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•6mo ago•
10 replies
Tieme

Difference between RepeatableEntry and Repeater

Hi All,

Can someone explain me why the data is different between a RepeatableEntry and Repeater

I have a action with slideover to show me records from a relationship (code below).

The RepeatableEntry hase all of my records.
The Repeater hase none of my records.

                Action::make('show_some_regels')
                    ->label('Bekijk opdrachtregels')
                    ->slideOver()
                    ->modal()
                    ->schema([
                        RepeatableEntry::make('some_regels')
                            ->hiddenLabel()
                            ->columnSpanFull()
                            ->columns(5)
                            ->schema([
                                TextEntry::make('product_id')
                                    ->hiddenLabel(),
                                TextEntry::make('vat_id')
                                    ->hiddenLabel()
                            ]),
                        Repeater::make('some_regels')
                            ->hiddenLabel()
                            ->disabled()
                            ->table([
                                TableColumn::make('product_id'),
                                TableColumn::make('vat_id'),
                            ])
                            ->schema([
                                TextInput::make('product_id'),
                                TextInput::make('vat_id'),
                            ]),
                    ])
                Action::make('show_some_regels')
                    ->label('Bekijk opdrachtregels')
                    ->slideOver()
                    ->modal()
                    ->schema([
                        RepeatableEntry::make('some_regels')
                            ->hiddenLabel()
                            ->columnSpanFull()
                            ->columns(5)
                            ->schema([
                                TextEntry::make('product_id')
                                    ->hiddenLabel(),
                                TextEntry::make('vat_id')
                                    ->hiddenLabel()
                            ]),
                        Repeater::make('some_regels')
                            ->hiddenLabel()
                            ->disabled()
                            ->table([
                                TableColumn::make('product_id'),
                                TableColumn::make('vat_id'),
                            ])
                            ->schema([
                                TextInput::make('product_id'),
                                TextInput::make('vat_id'),
                            ]),
                    ])


Thanks for the support!
image.png
Solution
I didn't understand what you said, anyway, this is the docs reference to fill the form with existing data
Modals - Actions - Filament
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Difference between ->record() and ->model on action
FilamentFFilament / ❓┊help
3y ago
RepeatableEntry
FilamentFFilament / ❓┊help
3y ago
Difference between $data and $this->data in CreateResource
FilamentFFilament / ❓┊help
3y ago
RepeatableEntry relationship
FilamentFFilament / ❓┊help
2w ago