Created
February 5, 2014 18:30
-
-
Save pablocid/8830108 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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