Hi everyone! I have a dropdownlist in my view
`<div class="form-group"> <label for="country">Select Country:</label> <select name="country" class="form-control" style="width:250px"> <option value="">--- Select Country ---</option> @foreach ($countries as $key => $value) <option title="{{$key}}" value="{{ $key }}">{{ $value }}</option> @endforeach </select>
</div>`can i access the value of selected item in dropdownlist and pass to Controller
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community