Support the ongoing development of Laravel.io →
Database Eloquent
Last updated 2 years ago.
0

I figured it out. I had to use a raw query, but it works:

        $people = $people->whereHas('charges', function($q)
        {
            $q->havingRaw('SUM(amount) > ?', array($inputAmount));

        }) ;

The havingRaw part is crucial, whereRaw does not work on aggregate operations like sum().

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

jasecara jasecara Joined 10 Mar 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.