Sorting a many to many relation with Laravel Eloqu

2019-09-18 14:55发布

I do have swatches table, a colors table and a swatch_color pivot table.

Relations are set as:

public function colors()
{
    return $this->belongsToMany('Color');
}

public function swatches()
{
    return $this->belongsToMany('Swatch');
}

I have no problem to retrieve the swatches with the color relations

$swatches = Swatch::with('colors')->get();
return dd($swatches);

Colors is always an array of 5 color objects with hue, R, G, and B attributes.

Now I would like to sort the swatches by the R value of the first related color.

2条回答
疯言疯语
2楼-- · 2019-09-18 15:20

Best Solution

$collection = collect($arr);
     $sorted = $collection->sortBy(function($vv, $kk) {
           return [$vv['isFriend'],$vv['isCoworker'],$vv['icecount']];
            });

 $finalArr = $sorted->values()->all();
查看更多
狗以群分
3楼-- · 2019-09-18 15:27

This is all you need to sort $swatches collection:

$swatches->sortBy(function ($swatch) {
  return ($color = $swatch->colors->first())
     ? $color->r
     : null;
});

Another way would be manual joining the tables.

You can use sortByDesc for descending order.

查看更多
登录 后发表回答