I have a controller where I want to combine data from multiple tables with parallel structures. What I want to end up with in the end is one object I can return from the contro
Nowadays you can use
$new_collection = $collection->merge($other_collection).
$new_collection = $collection->merge($other_collection)
This works in Laravel 4 and seems to handle both arrays and collections.