For me, it's a result that could be parsed with the JSON.Parse() function without error no ?
It seems that if you have this:
var jsonObj = $.parseJSON(JSON.stringify(result));
You are converting it to a string just so you can convert it back. I'm not completely familiar with the nuances of '$.parseJSON' but I think you could just skip that conversion entirely:
var jsonObj = result;
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community