[Vuejs]-Laravel Submit Form without refresh or reload the page

0👍

You can use ajax like that

$("#your-select-id").change(function(){
$.ajax({ method:"GET", url:"{{route('your-name-route')}}" },data:{status:$(this).val()})
})

Leave a comment