How can I merge and sum simple Laravel Collections with the same keys?
I have three Collections with the same keys and different numeric values, and I'd like to sum them together. e.g. $broadInventory = {'horse': 300, 'cow': 400, 'entropy': 400}; $ericaInventory = {'horse': 10, 'cow': 20, 'entropy': 30}; $johnsonInventory = {'horse': 5,…