© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•16mo ago•
1 reply
Juju

$data does not contain Detail Data from Repeater

I have Master Detail create form with Repeater to handle the detail data input. How can I access the detail data in the repeater before and after save?

here is the code of the repeater:
Repeater::make('details')
                                ->label('')
                                ->relationship('details')
                                ->schema([
                                    TextInput::make('details.name')
                                        ->label('Nama Pemesan')
                                        ->autocapitalize('words')
                                        ->minLength(3)
                                        ->validationAttribute('Nama pemesan')
                                        ->validationMessages([
                                            'min' => ':attribute harus lebih dari 3 karakter',
                                            'required' => ':attribute tidak boleh kosong',
                                        ])
                                        ->required()
                                        ->autofocus(),
Repeater::make('details')
                                ->label('')
                                ->relationship('details')
                                ->schema([
                                    TextInput::make('details.name')
                                        ->label('Nama Pemesan')
                                        ->autocapitalize('words')
                                        ->minLength(3)
                                        ->validationAttribute('Nama pemesan')
                                        ->validationMessages([
                                            'min' => ':attribute harus lebih dari 3 karakter',
                                            'required' => ':attribute tidak boleh kosong',
                                        ])
                                        ->required()
                                        ->autofocus(),



If it's only master I use mutateFormDataBeforeCreate() and handleRecordCreation().

Thank you in advance
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

Repeater get data from form
FilamentFFilament / ❓┊help
17mo ago
Mutate Repeater Data from Action
FilamentFFilament / ❓┊help
3y ago
custom page repeater does not delete from database
FilamentFFilament / ❓┊help
3y ago
Why repeater data does not included in mutateFormDataBeforeCreate() function?
FilamentFFilament / ❓┊help
2y ago