Hello everyone i want to display the owner name in the laravel blade from this document.
I can display the name and description using foreach loop but not from the embedded document.
{
"_id" : ObjectId("58c1b173ebda1297b747271b"),
"name" : "Name of Board",
"description" : "Board short description",
"postdate" : ISODate("2016-12-19T06:01:17.171Z"),
"owner" : [
{
"_id" : ObjectId("58c13ebaebda1297b747271a"),
"name" : "Harish Kumar Bhayraw"
}
],
"tag" : {
},
"subscribers" : [
{
}
],
"likes" : [
ObjectId("58c13ebaebda1297b747271a")
]
}
Please kindly help. thank you in advance
via Aatish Kumar