© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•14mo ago•
4 replies
Daniel

suffix action in the wrong place

my simple code :
public static function form(Form $form): Form
    {
        return $form
            ->schema([
                Section::make('Surgical Team and Infrastructure')
                    ->columns(3)
                    ->schema([
                        Select::make('hospital')
                            ->suffixIcon('heroicon-o-plus-circle')
                            ->suffixAction(
                                Action::make('dd')
                                    ->form([
                                        TextInput::make('testing')
                                        ])
                                    
                            ),
                        Select::make('anesthetist_group'),
                        Select::make('professional')
                    ])
            ]);
    }
public static function form(Form $form): Form
    {
        return $form
            ->schema([
                Section::make('Surgical Team and Infrastructure')
                    ->columns(3)
                    ->schema([
                        Select::make('hospital')
                            ->suffixIcon('heroicon-o-plus-circle')
                            ->suffixAction(
                                Action::make('dd')
                                    ->form([
                                        TextInput::make('testing')
                                        ])
                                    
                            ),
                        Select::make('anesthetist_group'),
                        Select::make('professional')
                    ])
            ]);
    }
Screenshot_from_2025-01-06_16-48-04.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

Suffix Action in Repeater Field
FilamentFFilament / ❓┊help
16mo ago
Get input value in suffix action
FilamentFFilament / ❓┊help
5mo ago
Suffix Action on table
FilamentFFilament / ❓┊help
3y ago
Input Blade Component Suffix Action
FilamentFFilament / ❓┊help
13mo ago