Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
問題があり、laravel 4を使用しています。学校のリストを表示したいのですが、学校がリストされると、その学校の教師の総数も表示され、教師は別のテーブルで見つかります。雄弁なormを使用してそれを達成することは可能ですか?.
私の知る限りではありませんが、私たちが行ってきたことは次のようなものです。
あなたの学校モデルでは:
public function teacherCount() { return Teachers::where('school_id', $this->id)->count(); }