© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
6 replies
Falk Maria Zeitsprung

Repeater shows up collapsed - why?

I dont want this repeater to show collapsed, when the form loads. I want to show one item.
Card::make()
                ->schema([
                    Repeater::make('start_times')
                        ->label('Hora(s) de inicio')
                        ->hint(__('Haciendo clic en el icono clonar puedes añadir más rápido.'))
                        ->createItemButtonLabel(__('+ Añadir hora de inicio'))
                        ->columns(2)
                        ->required()
                        ->cloneable()
                        ->disableItemMovement()
                        ->minItems(1)
                        ->defaultItems(1)
                        ->schema([

                            TimePicker::make('start_time')
                                ->label('Hora de inicio')
                                ->default('12:00')
                                ->withoutSeconds()
                                ->required(),

                        ]),
                ]),
Card::make()
                ->schema([
                    Repeater::make('start_times')
                        ->label('Hora(s) de inicio')
                        ->hint(__('Haciendo clic en el icono clonar puedes añadir más rápido.'))
                        ->createItemButtonLabel(__('+ Añadir hora de inicio'))
                        ->columns(2)
                        ->required()
                        ->cloneable()
                        ->disableItemMovement()
                        ->minItems(1)
                        ->defaultItems(1)
                        ->schema([

                            TimePicker::make('start_time')
                                ->label('Hora de inicio')
                                ->default('12:00')
                                ->withoutSeconds()
                                ->required(),

                        ]),
                ]),
`
Martin-Schenk-Screenshot-2023-09-28_17-39-56.jpg
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

Open new items in collapsed repeater
FilamentFFilament / ❓┊help
8mo ago
Provide title to collapsed items in a repeater
FilamentFFilament / ❓┊help
3w ago
Show item preview when repeater item is collapsed
FilamentFFilament / ❓┊help
2y ago
How to access $state inside a Repeater item ->collapsed()
FilamentFFilament / ❓┊help
16mo ago