问题描述
我可以为团队中的用户分配角色,可以将团队列表附加到该用户,也可以将角色列表获取给同一用户,但是当我汇总在一起以在编辑中获取附加到该用户的每个团队的角色时,刀片,结果重复... 我的UserController:
public function edit(User $user)
{
$teams = Team::all();
$roles = Role::all();
return view('admin.users.edit',compact('user','roles','teams'));
}
我的编辑刀片:
<table id="multi-select" class="display">
<thead>
<tr>
<th>
<label>
<input type="checkBox" class="select-all" />
<span></span>
</label>
</th>
<th>Customer/Team</th>
<th>Role</th>
<th>Description</th>
</tr>
</thead>
<tbody>
@foreach($user->rolesTeams as $team)
<tr>
<td>
<label>
<input type="checkBox" />
<span></span>
</label>
</td>
<td> {{ $team->display_name }}</td>
@foreach($user->roles as $role)
<td> {{ $role->display_name }}</td>
<td> {{ $role->description }}</td>
@endforeach
</tr>
@endforeach
</tbody>
</table>
期望:小组ID 2显示角色ID1 小组ID 3显示角色ID 2 任何帮助将不胜感激..
解决方法
我通过在foreach循环中使用for而不是foreach来解决这个问题,
@for ($i=0; $i<count ($user->rolesTeams) ; $i++)
<tr>
<td>
<label>
<input type="checkbox" />
<span></span>
</label>
</td>
<td> {{ $user->rolesTeams[$i]->display_name }}</td>
<td> {{ $user->roles[$i]->display_name }}</td>
<td> {{ $user->roles[$i]->description }}</td>
</tr>
@endfor