Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

271
Views
How can I show option values ​of other select based on first select value? Laravel9-Php

How can I show option values ​​of other select based on first select value?

<div class="mb-3">
    <label for="defaultSelect" class="form-label">Marka Seç</label>
    <select id="defaultSelect" class="form-select" name="marka_id">
        @foreach($datamarka as $rs)
            <option value="{{$rs->id}}">{{$rs->name}}</option>
        @endforeach
    </select>
</div>
<div class="mb-3">
    <label for="defaultSelect" class="form-label">Model Seç</label>
    <select id="defaultSelect" class="form-select" name="marka_id">
        <option value="">try</option>
    </select>
</div>

My controller

public function create() {
    $data=MModel::all();
    $datamarka=Marka::all();
    return view('admin.seri.create',['data'=>$data,'datamarka'=>$datamarka,]);
}
about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

You can use JavaScript or JQuery event of onselect and get the value or text of the selected dropdown option and use the $.get() or $.post() or $.Ajax() function of JQuery to retrieve value that you want based on the current data provided from the dropdown option.

When the Ajax function retrieves the data from the Controller, You can add it to the dropdown of your choice that you want.

if it was not clear for you, just let me know to put an example code for you as well.

    <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Get Selected Dropdown value using JQuery OnChange</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
    <form action="{{ route('admin.save') }}" class="gender">
         @csrf 
        <label>Gender:</label>
        <select name='gender' id="select">
            <option value='male' >Male</option>
            <option value='female' >Female</option>
        </select>
        <input type='text' id='text'>
    </form>
</body>
</html>

    <script>
$( "select" ).change(function() {
     
 var val= $(this).val();
$("#text").val(val); 

     data = {     _token: get the token data using jquery selectors
                    value1 :  $(this).val(),
                     value2 : $('#text').val()
             }
     $.post($('form.gender').attr('action'), { data  }, function 
    (response, status){
         
          $('select').append(response.data);
}   
});
</script>
about 4 years ago · Juan Pablo Isaza Report

0

I wrote this code using the example, it worked for me

            function update() {
                var select = document.getElementById('defaultSelect');
                var option = select.options[select.selectedIndex];
                //console.log(option.innerHTML)//seçilen marka
                var model = document.getElementById('defaultSelect1');
                var option1 = model.options;
                for(let i=0;i<option1.length;i++){
                    if(option.innerHTML!=option1[i].id){
                        if(option1[i].value!='null'){
                            console.log(option1[i])
                            //model.remove(i);
                            option1[i].classList.add('hidden');
                        }
                    }
                    if(option.innerHTML==option1[i].id){
                        if(option1[i].value!='null'){
                            console.log(option1[i])
                            //model.remove(i);
                            option1[i].classList.remove('hidden');
                        }
                    }
                }
                if(option.value!='null'){
                    document.getElementById('modeldiv').className='mb-3';
                    document.getElementById('seridiv').className='mb-3 row';
                }
            }

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!