1

我在构建的应用程序中有一个小的条件循环,当我知道更多时Laravel 5.5,我正在学习collections这似乎很神奇,目前我的控制器中有以下代码:

$milestone = Milestone::where('unique_id', $id)
    ->with('project.teams.users.profile')
    ->first();

//  $users = $milestone->project->pluck('teams.users');
$users = [];
foreach ($milestone->project->teams as $team)
{
    foreach($team->users as $user)
        $users[] = $user;
}

return response()->json(['users' => $users], 200);

在我尝试的代码$users = $milestone->project->pluck('teams.users');中没有给我正确的结果,在我的模型里程碑中,以下是关系:

public function project()
{
    return $this->belongsTo('App\Models\Team\Project', 'project_id');
}

在我的项目中,关系是:

public function teams()
{
    return $this->belongsToMany('App\Models\Team\Team', 'project_team', 'project_id', 'team_id');
}

在我的团队模型中:

public function users()
{
    return $this->belongsToMany('App\Models\User')->withTimestamps();
}

这可能是两个多对多的关系project->teamsteams->user我没有得到结果。

我想省略这个foreach循环collection,有人可以指导我如何通过同样的方式实现这个,谢谢

4

1 回答 1

2

Laravel 集合有很棒的flatten()方法。它将多维集合扁平化为一个维度。因此,您可以使用pluck()然后flatten()将所有团队的用户作为一个集合并省略foreach循环:

$users = $milestone->project->teams->pluck('users')->flatten();

它将单个项目中的所有用户作为集合返回,因此您将能够通过each()以下方法循环用户:

$users->each(function($user){
  //your code here
});
于 2018-01-11T15:41:27.703 回答