Skip to content

Instantly share code, notes, and snippets.

@manashcse11
Last active September 7, 2022 14:50
Show Gist options
  • Save manashcse11/6234ed3b7b8a6bb45157cbca25277a7e to your computer and use it in GitHub Desktop.
Save manashcse11/6234ed3b7b8a6bb45157cbca25277a7e to your computer and use it in GitHub Desktop.
#Laravel collection #group by with sum
<?php
$collection = collect([
['item_id' => 10, 'status_id' => 1, 'point' => 3],
['item_id' => 11, 'status_id' => 2, 'point' => 2],
['item_id' => 12, 'status_id' => 3, 'point' => 4],
['item_id' => 13, 'status_id' => 3, 'point' => 1],
]);
$grouped = $collection->groupBy('status_id')
->map(function ($item) {
return $item->sum('point');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment