Laravel-Laratrust如何列出团队中所有附加角色的用户



我可以将角色分配给团队中的用户,并可以将团队列表附加到该用户,也可以将角色列表附加到同一用户,但当我在编辑刀片中将每个团队的角色组合在一起以将其附加到该用户时,结果会重复。。。我的用户控制器:

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>

编辑用户来自数据库Sql

应为:团队Id 2将显示角色Id 1团队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

相关内容

  • 没有找到相关文章

最新更新