Friday, March 10, 2017

How to display embedded MongoDB document in Laravel Blade?

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" : "Joker"
                }
        ],
        "tag" : {

        },
        "subscribers" : [
                {

                }
        ],
        "likes" : [
                ObjectId("58c13ebaebda1297b747271a")
        ]
}

Please kindly help. thank you in advance



via Aatish Kumar

Advertisement