我在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
,有人可以指导我如何实现这一点,谢谢