Laravel triple hasManyThrough

时间:2016-12-03 18:48:06

标签: php laravel has-many-through

您好我正在尝试计算所有回复。

$forum->sections->topics->replies->count();

可以制作这样的东西吗?

// Forum Model

public function replies()
{
    return $this->hasManyThrough('App\Reply', 'App\Topic', 'App\Section');
}

感谢您的回答。

0 个答案:

没有答案