Laravel查询生成器 - 对生成的属性使用sum方法

时间:2017-03-01 16:54:35

标签: php mysql laravel eloquent laravel-query-builder

我们说我有这两种模式:

订单型号:

  • ID
  • 州(不完整,完整)

项目型号:

  • ID
  • ORDER_ID
  • is_worthy。

/**
 * 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属性是在模型中生成的。

所以我的问题是,如何总结完整订单的价格?

1 个答案:

答案 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');