How to get search record after choosing SELECT option?
Hi there, I am using the following code to obtain
user_id
(which belongs to user
model). I am trying to forward the search record of selected user to another fields (i.e. phone_number
) without using manual search query. Is there anyway that filaments provide to do the work, I failed to find related content on the documentation, thank you.
Solution:Jump to solution
Alright I figured it out, I used
Select $component
to get the values:
```php
Select::make('user_id')
->label('Customer Email')...1 Reply
Solution
Alright I figured it out, I used
Select $component
to get the values: