Laravel Tips (Eloquent): withMax, withMin, withAvg & withSum.
By Xinecraft on Feb 17, 2021

TIL: Apart from withCount, eloquent also have other aggregate functions like withMax, withMin, withAvg and withSum.
Eg:
$posts = Post::withSum('comments', 'votes')->get();
foreach ($posts as $post) {
echo $post->comments_sum_votes;
}