Introduction
The select component allows you to select from a list of predefined options:Enabling the JavaScript select
By default, Filament uses the native HTML5 select. You may enable a more customizable JavaScript select using thenative(false) method:
Searching options
You may enable a search input to allow easier access to many options, using thesearchable() method:
Returning custom search results
If you have lots of options and want to populate them based on a database search or other external data source, you can use thegetSearchResultsUsing() and getOptionLabelUsing() methods instead of options().
The getSearchResultsUsing() method accepts a callback that returns search results in $key => $value format. The current userβs search is available as $search, and you should use that to filter your results.
The getOptionLabelUsing() method accepts a callback that transforms the selected option $value into a label. This is used when the form is first loaded when the user has not made a search yet. Otherwise, the label used to display the currently selected option would not be available.
Both getSearchResultsUsing() and getOptionLabelUsing() must be used on the select if you want to provide custom search results:
getOptionLabelUsing() is crucial, since it provides Filament with the label of the selected option, so it doesnβt need to execute a full search to find it. If an option is not valid, it should return null.
Setting a custom loading message
When youβre using a searchable select or multi-select, you may want to display a custom message while the options are loading. You can do this using theloadingMessage() method:
Setting a custom no search results message
When youβre using a searchable select or multi-select, you may want to display a custom message when no search results are found. You can do this using thenoSearchResultsMessage() method:
Setting a custom no options message
When youβre using a select or multi-select withpreload() or dynamic options via options() closure, you may want to display a custom message when no options are available. You can do this using the noOptionsMessage() method:
Setting a custom search prompt
When youβre using a searchable select or multi-select, you may want to display a custom message when the user has not yet entered a search term. You can do this using thesearchPrompt() method:
Setting a custom searching message
When youβre using a searchable select or multi-select, you may want to display a custom message while the search results are being loaded. You can do this using thesearchingMessage() method:
Tweaking the search debounce
By default, Filament will wait 1000 milliseconds (1 second) before searching for options when the user types in a searchable select or multi-select. It will also wait 1000 milliseconds between searches, if the user is continuously typing into the search input. You can change this using thesearchDebounce() method:
Multi-select
Themultiple() method on the Select component allows you to select multiple values from the list of options:
array cast to the model property:
getOptionLabelsUsing() instead of getOptionLabelUsing(). $values will be passed into the callback instead of $value, and you should return a $key => $value array of labels and their corresponding values:
getOptionLabelsUsing() is crucial, since it provides Filament with the labels of already-selected options, so it doesnβt need to execute a full search to find them. It is also used to validate that the options that the user has selected are valid. If an option is not valid, it should not be present in the array returned by getOptionLabelsUsing().
Reordering selected options
Thereorderable() method allows you to reorder the selected options in a multi-select:
Grouping options
You can group options together under a label, to organize them better. To do this, you can pass an array of groups tooptions() or wherever you would normally pass an array of options. The keys of the array are used as group labels, and the values are arrays of options in that group:
Integrating with an Eloquent relationship
You may employ therelationship() method of the Select to configure a BelongsTo relationship to automatically retrieve options from. The titleAttribute is the name of a column that will be used to generate a label for each option:
multiple() method may be used in combination with relationship() to use a BelongsToMany relationship. Filament will load the options from the relationship, and save them back to the relationshipβs pivot table when the form is submitted. If a name is not provided, Filament will use the field name as the relationship name:
Searching relationship options across multiple columns
By default, if the select is also searchable, Filament will return search results for the relationship based on the title column of the relationship. If youβd like to search across multiple columns, you can pass an array of columns to thesearchable() method:
Preloading relationship options
If youβd like to populate the searchable options from the database when the page is loaded, instead of when the user searches, you can use thepreload() method:
Excluding the current record
When working with recursive relationships, you will likely want to remove the current record from the set of results. This can be easily be done using theignoreRecord argument:
Customizing the relationship query
You may customize the database query that retrieves options using the third parameter of therelationship() method:
Customizing the relationship option labels
If youβd like to customize the label of each option, maybe to be more descriptive, or to concatenate a first and last name, you could use a virtual column in your database migration:getOptionLabelFromRecordUsing() method to transform an optionβs Eloquent model into a label:
Saving pivot data to the relationship
If youβre using amultiple() relationship and your pivot table has additional columns, you can use the pivotData() method to specify the data that should be saved in them:
Creating a new option in a modal
You may define a custom form that can be used to create a new record and attach it to theBelongsTo relationship:
Customizing new option creation
You can customize the creation process of the new option defined in the form using thecreateOptionUsing() method, which should return the primary key of the newly created record:
Editing the selected option in a modal
You may define a custom form that can be used to edit the selected record and save it back to theBelongsTo relationship:
Customizing option updates
You can customize the update process of the selected option defined in the form using theupdateOptionUsing() method. The current Eloquent record being edited can be retrieved using the getRecord() method on the schema:
Handling MorphTo relationships
MorphTo relationships are special, since they give the user the ability to select records from a range of different models. Because of this, we have a dedicated MorphToSelect component which is not actually a select field, rather 2 select fields inside a fieldset. The first select field allows you to select the type, and the second allows you to select the record of that type.
To use the MorphToSelect, you must pass types() into the component, which tell it how to render options for different types:
Customizing the option labels for each morphed type
ThetitleAttribute() is used to extract the titles out of each product or post. If youβd like to customize the label of each option, you can use the getOptionLabelFromRecordUsing() method to transform the Eloquent model into a label:
Customizing the relationship query for each morphed type
You may customize the database query that retrieves options using themodifyOptionsQueryUsing() method:
Customizing the morph select fields
You may further customize the βkeyβ select field for a specific morph type using themodifyKeySelectUsing() method:
modifyKeySelectUsing() method on the MorphToSelect component itself:
modifyTypeSelectUsing() method:
Using toggle buttons for the type selector
By default, the type selector is a select field. You may switch it to use inline toggle buttons using thetypeSelectToggleButtons() method:
modifyTypeSelectUsing() method:
Allowing HTML in the option labels
By default, Filament will escape any HTML in the option labels. If youβd like to allow HTML, you can use theallowHtml() method:
Be aware that you will need to ensure that the HTML is safe to render, otherwise your application will be vulnerable to XSS attacks.
Wrap or truncate option labels
When using the JavaScript select, labels that exceed the width of the select element will wrap onto multiple lines by default. Alternatively, you may choose to truncate overflowing labels.Disable placeholder selection
You can prevent the placeholder (null option) from being selected using theselectablePlaceholder(false) method:
Disabling specific options
You can disable specific options using thedisableOptionWhen() method. It accepts a closure, in which you can check if the option with a specific $value should be disabled:
Adding affix text aside the field
You may place text before and after the input using theprefix() and suffix() methods:
Using icons as affixes
You may place an icon before and after the input using theprefixIcon() and suffixIcon() methods:
Setting the affix iconβs color
Affix icons are gray by default, but you may set a different color using theprefixIconColor() and suffixIconColor() methods:
Limiting the number of options
You can limit the number of options that are displayed in a searchable select or multi-select using theoptionsLimit() method. The default is 50:
Boolean options
If you want a simple boolean select, with βYesβ and βNoβ options, you can use theboolean() method:
trueLabel argument on the boolean() method:
falseLabel argument on the boolean() method:
placeholder argument on the boolean() method:
Selecting options from a table in a modal
You can use theModalTableSelect component to open a Filament table in a modal, allowing users to select records from it. This is useful when you have a relationship that has a lot of records, and you want users to be able to perform advanced filtering and searching through them.
To use the ModalTableSelect, you must have a table configuration class for the model. You can generate one of these classes using the make:filament-table command:
configure() method that accepts the Table object and returns it. The class name needs to be passed to the tableConfiguration() method of the ModalTableSelect component:
multiple() method with a multiple relationship such as BelongsToMany:
Customizing the modal table select actions
You can customize the βSelectβ button and modal using the action object configuration methods. Passing a function to theselectAction() method allows you to modify the $action object, for example, to change the button label and the modal heading:
Customizing the option labels in the modal table select
ThegetOptionLabelFromRecordUsing() method can be used to customize the label of each selected option. This is useful if you want to display a more descriptive label or concatenate two columns together:
multiple() options are listed in a βbadgeβ design, and singular options are listed in plain text. The badge() method can be used to define whether the option label should appear inside a badge:
badgeColor() method can be used to set the badge color:
Passing additional arguments to the table in a modal select
You can pass arguments from your form to the table configuration class using thetableArguments() method. For example, this can be used to modify the tableβs query based on previously filled form fields:
$table->getArguments() method:
Select validation
As well as all rules listed on the validation page, there are additional rules that are specific to selects.Valid options validation (in() rule)
The in() rule ensures that users cannot select an option that is not in the list of options. This is an important rule for data integrity purposes, so Filament applies it by default to all select fields.
Since there are many ways for a select field to populate its options, and in many cases the options are not all loaded into the select by default and require searching to retrieve them, Filament uses the presence of a valid βoption labelβ to determine whether the selected value exists. It also checks if that option is disabled or not.
If you are using a custom search query to retrieve options, you should ensure that the getOptionLabelUsing() method is defined, so that Filament can validate the selected value against the available options:
getOptionLabelUsing() method should return null if the option is not valid, to allow Filament to determine that the selected value is not in the list of options. If the option is valid, it should return the label of the option.
If you are using a multiple() select or multi-select, you should define getOptionLabelsUsing() instead of getOptionLabelUsing(). $values will be passed into the callback instead of $value, and you should return a $key => $value array of labels and their corresponding values:
relationship() method, the getOptionLabelUsing() or getOptionLabelsUsing() methods will be automatically defined for you, so you donβt need to worry about them.
Number of selected items validation
You can validate the minimum and maximum number of items that you can select in a multi-select by setting theminItems() and maxItems() methods:
Customizing the select action objects
This field uses action objects for easy customization of buttons within it. You can customize these buttons by passing a function to an action registration method. The function has access to the$action object, which you can use to customize it or customize its modal. The following methods are available to customize the actions:
createOptionAction()editOptionAction()manageOptionActions()(for customizing both the create and edit option actions at once)