skip to Main Content

I have this object and I need to remove the repeated rfcs from the catalog, how is it possible to do this? – Laravel

I have this object in php: $object = [ [ {"catalogo": "C400047", "rfc_inf_aval": "CIS981002NK4", }, {"catalogo": "C140064","rfc_inf_aval": "MZT8501014S6",}, {"catalogo": "C400047","rfc_inf_aval": "MZT8501014S6",}, {"catalogo": "C400047","rfc_inf_aval": "CIS981002NK4",}, {"catalogo": "C140064","rfc_inf_aval": "MZT8501014S6",}, {"catalogo": "C140064","rfc_inf_aval": "MZT8501014S6",}, {"catalogo": "C140064","rfc_inf_aval": "MZT8501014S6",}, {"catalogo": "C140064","rfc_inf_aval": "CIS981002NK4",}, ], ] and it…

VIEW QUESTION
Back To Top
Search