如何计算Laravel中有两个条件的太多关系中出现的行数

时间:2016-08-27 12:13:25

标签: php laravel laravel-5.2

我希望计算出有两个条件的太多关系中出现的行数。查询如下:

$follow = count($profiles->follow->where('follow_id', $account)->where('user_id', $user));

我目前在follow_id中的条目为17,在user_id中的条目为16。

$account$user转储显示数据正确无误。

结果目前回到0,我正在寻找它。

由于

1 个答案:

答案 0 :(得分:1)

$follow = $profiles->follow->where('follow_id', $account)->where('user_id', $user)->count();