2
に私は熱心な負荷に関連してみました:大会でコール()整数
$tournaments = Tournament::with('numCompetitors')->latest()->paginate(config('constants.PAGINATION'));
私の関係は、整数を返します。
それとpublic function numCompetitors()
{
return $this->competitors()->count(); // it returns 24
}
私が取得:
Call to a member function addEagerConstraints() on integer
なぜ失敗するのか分かりません。
グレート!まさに私が忘れたもの! Tx! –