select preload() option loading issue
May I ask everyone, I am using the preload() option with select, but it is not displaying all the options. The code snippet is as follows:
Select::make('KeyWord')
->multiple()
->label(__('Keywords'))
->relationship('KeyWord', 'name')
->preload(),
5 Replies
->limit(1000)
Thank you for your reply. Currently ERROR appears: Method Filament\Forms\Components\Select::limit does not exist.
sorry
->optionsLimit(1000)
Solution
Got it, thank you for your reply