Skip to content

Instantly share code, notes, and snippets.

@mknparreira
Last active August 12, 2021 22:15
Show Gist options
  • Save mknparreira/4c1f14c59f47af0b4b5686f7da594240 to your computer and use it in GitHub Desktop.
Save mknparreira/4c1f14c59f47af0b4b5686f7da594240 to your computer and use it in GitHub Desktop.
Laravel | Collection group with sum values
$mystuff = collect($something);
$num = $mystuff->groupBy('dateDay')->map(function ($row) {
    return $row->sum('n');
});

dd($num);
@mknparreira
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment