FilamentF
Filament12mo ago
Randak

Dropdown with more than 50 records

Novice user. I have a dropdown for my create and edit forms that have about 70 records. I want the whole list to be available to the user. How can I increase this limit?

            ->headerActions([
                Tables\Actions\AttachAction::make()
                    ->preloadRecordSelect()
                    ->form(fn (AttachAction $action): array => [
                        $action->getRecordSelect(),
                        Forms\Components\TextInput::make('fame_points')
                            ->required()
                            ->integer(),
                    ]),
            ])
Was this page helpful?