@foreach($users as $user)
| Nombre |
Correo Electronico |
| {{ $user->name }} |
{{ $user->email }} |
| Productos |
Producto asignado |
@foreach($productosxusers as $productos)
@if ($user->id == $productos->id_usu)
|
{{ $productos->nombre }} |
@endif
@endforeach
| Municipios |
Municipio asignado |
@foreach($municipios as $muni)
@if ($user->id == $muni->id_usu)
|
{{ $muni->desc }} |
@endif
@endforeach
@endforeach