Laravel Tips (Eloquent): withMax, withMin, withAvg & withSum.
Xinecraft

Xinecraft @xinecraft

About: <?php print('PHP is dead') ?>

Joined:
Aug 3, 2020

Laravel Tips (Eloquent): withMax, withMin, withAvg & withSum.

Publish Date: Feb 17 '21
6 0

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;
}
Enter fullscreen mode Exit fullscreen mode

Comments 0 total

    Add comment