"Dot notation" supports "wildcard"const collection = collect([ { name: 'John', roles: [ { name: 'Editor', }, { name: 'Admin', }, ], }, ]); const plucked = collection.pluck('roles.*.name'); plucked.all(); // [ // [ // 'Editor', // 'Admin', // ], // ]...