0👍
You can use ajax like that
$("#your-select-id").change(function(){
$.ajax({ method:"GET", url:"{{route('your-name-route')}}" },data:{status:$(this).val()})
})
Source:stackexchange.com
0👍
You can use ajax like that
$("#your-select-id").change(function(){
$.ajax({ method:"GET", url:"{{route('your-name-route')}}" },data:{status:$(this).val()})
})