我们说我有这两种模式:
订单型号:
项目型号:
/**
* Returns the item's price according to its worthy
*/
public function getPriceAttribute()
{
return $this->is_worthy ? 100 : 10; // $
}
到目前为止一切顺利。
现在我想总结一下完整订单的价格。所以我这样做:
App\Item::whereHas('order', function ($query) {
$query->where('state', 'complete');
})->sum('price')
但事实是,我在items
表格中没有列price
。因为price
属性是在模型中生成的。
所以我的问题是,如何总结完整订单的价格?
答案 0 :(得分:5)
有两种方法可以做到这一点:
<强> 1。让PHP完成所有工作
$items = App\Item::whereHas('order', function ($query) {
$query->where('state', 'complete');
})->get();
$sum = $items->sum(function($item) {
return $item->price;
});
// In Laravel 5.4, you can replace the last line with $sum = $items->sum->price;
<强> 2。让SQL完成所有工作
$items = App\Item::whereHas('order', function ($query) {
$query->where('state', 'complete');
})->select('*', DB::raw('IF(is_worthy, 100, 10) as price'))->sum('price');