<select name="name" class="form-select input is-success is-small" id="details">
@foreach ($cows as $cow)
<option value="{{ $cow->name}}">{{ $cow->name}}</option>
@endforeach
</select>
https://prnt.sc/Q3136a2jTehS Here is a drop-down menu retrieved from the database table. I have created 3- cards .But I want to show them when I click a particular name from the drop-down and then retrieve data for the particular selected name from the drop-down. Can anyone help me with these? I have tried some Jquery events but failed. also how can I get the details of the selected options from the different Controller