标签: php laravel has-many-through
您好我正在尝试计算所有回复。
$forum->sections->topics->replies->count();
可以制作这样的东西吗?
// Forum Model public function replies() { return $this->hasManyThrough('App\Reply', 'App\Topic', 'App\Section'); }
感谢您的回答。