Laravel - Dependent Drop Down Using Ajax

Resources\View\ index.blade.php: <h1> Dependent Drop Down </h1> <select name="country" id="country"> <option hidden>Select Country</option> @foreach($country as $list) <option value="{{$list->id}}">{{$list->country}}</option> @endforeach </select> <select name="state" id="state"> <option hidden>Select State</option> <option value=""></option> </select> <select name="city" id="city"> <option hidden>Select City</option> <option value=""></option> </select> </body> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJ...