$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
let formData = new FormData(form);
$.ajax({
type:'POST',
url:'{{ route('url') }}',
data: formData,
contentType: false,
processData: false,
cache: false,
beforeSend: function() {
$("#full_loading").show();
},
success: (response) => {
if (response) {
if(response.param == true) {
window.location.href = "{{ route('url','id') }}".replace("id", response.id);
}
}
},
error: function(response){
console.log(response);
}
});