sql >> Databasteknik >  >> RDS >> Mysql

Laravel:hur man får genomsnitt på kapslade hasMany relationer (hasManyThrough)

Du behöver något sånt här http://softonsofa.com/tweaking-eloquent-relations-how-to-get-hasmany-relation-count-efficiently/ bara lite justerad för att matcha dina behov:

public function reviewRows()
{
    return $this->hasManyThrough('ReviewRow', 'Review');
}

public function avgRating()
{
    return $this->reviewRows()
      ->selectRaw('avg(rating) as aggregate, product_id')
      ->groupBy('product_id');
}

public function getAvgRatingAttribute()
{
    if ( ! array_key_exists('avgRating', $this->relations)) {
       $this->load('avgRating');
    }

    $relation = $this->getRelation('avgRating')->first();

    return ($relation) ? $relation->aggregate : null;
}

Sedan så enkelt som det här:

// eager loading
$products = Product::with('avgRating')->get();
$products->first()->avgRating; // '82.200' | null

// lazy loading via dynamic property
$product = Product::first()
$product->avgRating; // '82.200' | null


  1. $PATH sparas inte efter att jag lämnat terminalen

  2. Hitta lediga rum (bokningssystem)

  3. Naturlig koppling i SQL Server

  4. Hur man installerar MariaDB på CentOS 8