FilamentF
Filament12mo ago
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')
                    ])
            ]);
    }
Screenshot_from_2025-01-06_16-48-04.png
Was this page helpful?