let loader = document.querySelector('.loader') loader.style.visibility = 'visible'; jQuery.ajax({ type: 'POST', url: "{{ url('usuario/filtro-ventas') }}", data: { "_token": "{{ csrf_token() }}", ano: marca, tipo: 2 }, success: function (data) { loader.style.visibility = 'hidden'; response = JSON.parse(data); console.log(response); var content = ""; jQuery.each(response, function(i, item) { content += '
'+ '
'+ '
'+ '
'+ '
'+ '
'+ if(Array.isArray(item)){ if(item.lenght > 0){ jQuery.each(item, function(j, item2) { if($j != 'color'){ '
'+ '
'+ ''+ '
'+ '
'+ '
'+ ' '+ ' '+ ''+ ''+ '' ' '+ ''+ ' '+ ''+ if(item2.lenght > 0){ jQuery.each(item2, function(k, item3) { ''+ ''+ ''+ ''+ ''+ } } '' '
MarcaVolumen (Ton)Valor
'+item3.marca+''+item3.toneladas_netas+' '+item3.total_ventas+'
'+ '
'+ '
'+ '
'+ } } } } '
'+ '
'+ '
'+ '
'; //$("#regiones-content").html(content); }); }, error: function (e) { loader.style.visibility = 'hidden'; console.log(e); } });