Skip to content

Instantly share code, notes, and snippets.

@pablocid
Created February 5, 2014 18:30
Show Gist options
  • Save pablocid/8830108 to your computer and use it in GitHub Desktop.
Save pablocid/8830108 to your computer and use it in GitHub Desktop.
// THIS return form json like User::all(); How to get json from like this:
[
{
"id": 234,
"name": "Hola"
},
{
"id": 66,
"name": "comova"
}
]
//to this
{
234: {
"id": 234,
"name": "Hola"
},
66: {
"id": 66,
"name": "comova"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment