© 2026 Hedgehog Software, LLC

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

Disable select option if selected in another repeater item

Assume i have a repeater with Select options, how can i disable the option if its selected in another repeater's select?

Repeater::make('stocks')
->label('Merchant Stocks')
->schema([
Select::make('merchant_store_id')
->label('Merchant')
->reactive()
->options(function (Closure $get) {
return \App\Models\Merchant::all()->pluck('name', 'id');
})
->required(),
TextInput::make('stock_count')
->label('Stock Count')
->required(),
])
->disableItemMovement()

how do i ensure the above Select only a Merchant is selected once in repeater.
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

Repeater remove selected option in a select
FilamentFFilament / ❓┊help
3y ago
Remove the item selected in another select
FilamentFFilament / ❓┊help
2y ago
Emit selected item on repeater items
FilamentFFilament / ❓┊help
3y ago
validate select repeater option
FilamentFFilament / ❓┊help
3y ago