ゲームテーブルで外部キーを定義するため、Player
の間には1対多の関係があります。 およびGame
すでに。 Player
に次のリレーションを追加してみてください モデル:
// Player.php
public function won()
{
// must specify the foreign key because it is not the usual `_id` convention.
return $this->hasMany(Game::class, 'winner');
}
次に、次のように各プレーヤーでアクセスします:
@foreach($players as $player)
{{ $player->won->count() }}
@endforeach
ビューファイルでクエリを実行するのではなく、コントローラで次のことを実行するのが理想的です。
public function index()
{
/*Load the view and pass the groups*/
return \View::make('players.index')->with('players', Player::with('won')->get());
}