我有一个FamilyMember模型和一个SubscriptionCharge模型,SubscriptionCharge存储每个家庭成员数月的费用。我必须选择收费总额大于特定金额的会员。
$members=FamilyMember::whereHas('subscription_charge', function ($qq) {
$qq->where(); // how to check sum of column 'amount' in where
})->get();
如何在where条件中检查“金额”列的总和