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(); }