Skip to content
Advertisement

Tag: laravel-collection

Transform nested collection in laravel

I have a nested collection that I want to transform, pulling some keys “up a level” and discarding some other keys. Every item in the collection has an allergens property. I need to make each items allergens property, look like I’ve tried the following: But it doesn’t overwrite the allergens property Answer Since you’re posting your collection as JSON, I

Get the two different objects together

I’ve got $campus_groups coming from CampusGroup which has and $campus_org_groups coming from CampusOrganizationGroup which has and would like to get both together like this (the important key is group_id and I’m ok if campus_organization_id is left out) If I merge them this is what I’m getting If I union them this is what I’m getting Answer I’ve changed to Notice

Advertisement