mardi 19 février 2019

Sort Laravel Collection not by custom order, other than asc or desc

I have this array as Laravel Collection :

"data": [
  {
    "id": 863368,
    "reference": "Ref 1",
    "status": 1
  },
  {
    "id": 863391,
    "reference": "Ref 2",
    "status": 2
  },
  {
    "id": 863390,
    "reference": "Ref 3",
    "status": 2
  },
  {
    "id": 863396,
    "reference": "Ref 4",
    "status": 3
  }
];

And I need to sort it by status, not by asc or desc, but the records with status 2 should be first on the list, then status 1 then status 3.

I can't figure out how to achive this, thank you in advance.



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire