© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago
Kaan

Add Custom Button to Repeater

Can i add custom button to repeater (top right) (left to delete button)
    public function form(Form $form): Form
    {
        return $form
            ->schema([
                Repeater::make('categorySteps')
                    ->label('Kategori Adımları')
                    ->schema([
                        TextInput::make('step_title')
                            ->label('Adım Başlığı')
                            ->disabled()
                            ->required(),
                    ])
                    ->columns(2)
                    ->reorderable()
                    ->reorderableWithButtons()
                    ->orderColumn('position')
                    ->addable(false),
            ])
            ->columns(1)
            ->statePath('data');
    }
    public function form(Form $form): Form
    {
        return $form
            ->schema([
                Repeater::make('categorySteps')
                    ->label('Kategori Adımları')
                    ->schema([
                        TextInput::make('step_title')
                            ->label('Adım Başlığı')
                            ->disabled()
                            ->required(),
                    ])
                    ->columns(2)
                    ->reorderable()
                    ->reorderableWithButtons()
                    ->orderColumn('position')
                    ->addable(false),
            ])
            ->columns(1)
            ->statePath('data');
    }
image.png
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

Custom Repeater button
FilamentFFilament / ❓┊help
2y ago
Repeater Add button - Icon
FilamentFFilament / ❓┊help
15mo ago
Repeater: Position "Add more" button
FilamentFFilament / ❓┊help
3y ago
Add attributes specifically to Repeaters Add button
FilamentFFilament / ❓┊help
3y ago