我在构建的应用程序中有一个小的条件循环,当我知道更多时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->teams
,teams->user
我没有得到结果。
我想省略这个foreach
循环collection
,有人可以指导我如何通过同样的方式实现这个,谢谢