© 2026 Hedgehog Software, LLC

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

Select Form Field Limits 50 Options Visible

When using the
Select
Select
form-field, I'm populating the
options()
options()
method like this:

Select::make('promotion')
    ->options(function(){
        $promos =  PromotionMeta::orderBy('promotion_desc')
            ->pluck('promotion_desc', 'promotion')
            ->toArray();
        return $promos;
    })  
    ->searchable()
    ->required()
    ->reactive(),
Select::make('promotion')
    ->options(function(){
        $promos =  PromotionMeta::orderBy('promotion_desc')
            ->pluck('promotion_desc', 'promotion')
            ->toArray();
        return $promos;
    })  
    ->searchable()
    ->required()
    ->reactive(),


My problem is: only 50 results are visible in the dropdown at a time. Can this be changed? Yes, I realize it's searchable but users may not know what to search. I'd like to show all options.
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

Form Select options reload
FilamentFFilament / ❓┊help
3y ago
Testing select field options
FilamentFFilament / ❓┊help
3y ago
Options List for Select Field
FilamentFFilament / ❓┊help
3y ago
Form Select component select all options method
FilamentFFilament / ❓┊help
3y ago