我尝试使用条件为if same creator and same account name then print
的php检索我桌面上的数据。我使用的是这段代码:
$groups = \App\Group::where('created_by', '=', $grp->created_by)->get();
if($groups->count() > 0){
$group = \App\Group::where('account_name', 'LIKE', $groups[0]->account_name)->groupBy('name')->get();
}
但它只显示具有相同account_name
的数据,即使它们具有不同的创建者created_by
答案 0 :(得分:0)
我想删除这个问题,因为我自己解决了这个问题,但我只是发布了我的解决方案。有人可能需要它:
$group = \App\Group::where('account_name', '=', $grp->account_name)->where('created_by', 'LIKE', $grp->created_by)->groupBy('name')->get();