I have two models: Post
and User
, and I need to get result as this nested format:
[
{
"id": 1,
"title": "post one title",
"content": "hello",
"user_id": 1,
"user": {
"id": 1,
"nickname": "phalcon",
}
},
{
"id": 2,
"title": "post two title",
"content": "world",
"user_id": 2,
"user": {
"id": 2,
"nickname": "php",
}
}
]
How can I get this nested result? Many Thanks!