© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•6mo ago•
1 reply
tomtom

Builder inside repeater stopped working since v4

I used Repeater to group blocks into sections in the blog part of my site. Here is the code that worked perfectly before upgrading to v4 :

Repeater::make('sections')
    ->schema([
        Builder::make('blocks')
            ->label('Blocks')
            ->blocks([
                Builder\Block::make('block')
                    ->schema([
                        TextInput::make('title'),
                        Textarea::make('content'),
                    ])
            ]),
    ]),
Repeater::make('sections')
    ->schema([
        Builder::make('blocks')
            ->label('Blocks')
            ->blocks([
                Builder\Block::make('block')
                    ->schema([
                        TextInput::make('title'),
                        Textarea::make('content'),
                    ])
            ]),
    ]),


Since v4, the repeater works but the blocks are not added anymore. If I remove the repeater, it works fine but it means I cannot group my blocks together. Any idea of some update I didn't make correctly or is that a bug?
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 doesn't work inside builder
FilamentFFilament / ❓┊help
6mo ago
Translate builder field content inside repeater field
FilamentFFilament / ❓┊help
3y ago
Repeater Inside Repeater
FilamentFFilament / ❓┊help
7mo ago
Builder or Repeater?
FilamentFFilament / ❓┊help
3y ago