Drop-down in text input
TextInput::make('assign_to')
->label('Assign to')
->placeholder('Enter Employee Name')
->required()
->reactive()
->extraAttributes([
'class' => 'create-audit-form'
])
I want to add a feature such that whenever we click in textinput....first it should load a dropdown in that dropdown we have data coming from backend and when we type in textinput it should search the name in that list and when user selects the name it should be available in textinput. Just like the below image.
->label('Assign to')
->placeholder('Enter Employee Name')
->required()
->reactive()
->extraAttributes([
'class' => 'create-audit-form'
])
I want to add a feature such that whenever we click in textinput....first it should load a dropdown in that dropdown we have data coming from backend and when we type in textinput it should search the name in that list and when user selects the name it should be available in textinput. Just like the below image.
