LARAVEL: Display lists that belongs to a specific user_id

I’m creating a clone for a website where parents can create a list of things they need for their newborn baby so other people can buy it for them as a gift. At this moment I’ve managed to insert data into my table and to link that row of data to the user id (so… Read More LARAVEL: Display lists that belongs to a specific user_id

How to print nested values along with parent level values using jq

I have the following json { "data": [ { "id": id1, "arr": [ { "arrId": arrId11, "someOtherKey1": xxx, "someOtherKey2": xxx, }, { "arrId": arrId12, "someOtherKey1": xxx, "someOtherKey2": xxx, } ], "otherParentLevelKey": yyyyy }, { "id": id2, "arr": [ { "arrId": arrId21, "someOtherKey1": xxx, "someOtherKey2": xxx, }, { "arrId": arrId22, "someOtherKey1": xxx, "someOtherKey2": xxx, } ],… Read More How to print nested values along with parent level values using jq