0

ここに関係があります

  1. 取引hasManyカート
  2. カートbelongsTo商品
  3. 製品->価格

ここにモデルクラスがあります

//# TransactionModel
public function getCarts(){
    return $this->hasMany(CartModel::class, 'transaction_id','id');
}
//# CartModel
public function getProduct(){
    return $this->belongsTo(ProductModel::class,'product_id','id');
}

私が達成したいのは、現在のトランザクションs (多数)の合計価格を取得することです

私が今行っていることは、トランザクションごとに繰り返し、価格を合計することです$total

 Class TransactionModel{
 public static function getTotalPrice($transactions){
    $total = 0;
    foreach($transactions as $transaction){
            $total += $transaction->getCarts->sum('getProduct.price');
    }
    return $total;
 }

雄弁なコードでこれを行う方法ありがとう

4

2 に答える 2

0

foreach の代わりに collection reduce を使用するより良い方法を最終的に見つけました

 $totalPrice = $transactions->reduce(function($carry, $current){
                    return $carry + $current->getCarts->sum('getProduct.price');
               },0);
于 2019-03-12T10:51:20.453 に答える