|
208 | 208 | <tr>
|
209 | 209 | <th nowrap>ログインID</th>
|
210 | 210 | <th nowrap>ユーザー名</th>
|
211 |
| - <th nowrap><i class="fas fa-users" title="グループ参加"></i></th> |
| 211 | + <th nowrap><i class="fas fa-users"></i> グループ</th> |
212 | 212 | <th nowrap>eメール</th>
|
213 | 213 | @foreach($users_columns as $users_column)
|
214 | 214 | <th nowrap>{{$users_column->column_name}}</th>
|
|
224 | 224 | @foreach($users as $user)
|
225 | 225 | <tr class="{{$user->getStstusBackgroundClass()}}">
|
226 | 226 | <td nowrap>
|
227 |
| - <a href="{{url('/')}}/manage/user/edit/{{$user->id}}"> |
228 |
| - <i class="far fa-edit"></i> |
229 |
| - </a> |
| 227 | + <a href="{{url('/')}}/manage/user/edit/{{$user->id}}" title="ユーザ変更"><i class="far fa-edit"></i></a> |
230 | 228 | {{$user->userid}}
|
231 | 229 | </td>
|
232 | 230 | <td>{{$user->name}}</td>
|
233 |
| - <td nowrap><a href="{{url('/')}}/manage/user/groups/{{$user->id}}" title="グループ参加"><i class="fas fa-users"></i></a></th> |
| 231 | + <td> |
| 232 | + <a href="{{url('/')}}/manage/user/groups/{{$user->id}}" title="グループ参加"><i class="far fa-edit"></i></a> |
| 233 | + @foreach($user->group_users as $group_user) |
| 234 | + {{$group_user->name}}@if (!$loop->last), @endif |
| 235 | + @endforeach |
| 236 | + </td> |
234 | 237 | <td>{{$user->email}}</td>
|
235 | 238 | @foreach($users_columns as $users_column)
|
236 | 239 | <td>@include('plugins.manage.user.list_include_value')</td>
|
237 | 240 | @endforeach
|
238 | 241 | <td nowrap>
|
239 | 242 | @isset($user->view_user_roles)
|
240 | 243 | <h6>
|
241 |
| -{!!$user->getRoleStringTag()!!} |
| 244 | + {!!$user->getRoleStringTag()!!} |
242 | 245 | {{--
|
243 | 246 | @foreach($user->view_user_roles as $view_user_role)
|
244 | 247 | @if ($view_user_role->role_name == 'role_article_admin')<span class="badge badge-danger">コ</span> @endif
|
|
253 | 256 | </td>
|
254 | 257 | <td>
|
255 | 258 | @isset($user->user_original_roles)
|
256 |
| - @foreach($user->user_original_roles as $user_original_role) |
257 |
| - {{$user_original_role->value}}@if (!$loop->last) ,@endif |
258 |
| - @endforeach |
| 259 | + @foreach($user->user_original_roles as $user_original_role) |
| 260 | + {{$user_original_role->value}}@if (!$loop->last), @endif |
| 261 | + @endforeach |
259 | 262 | @endif
|
260 | 263 | </td>
|
261 | 264 | <td nowrap>{{UserStatus::getDescription($user->status)}}</td>
|
|
0 commit comments