Я пытаюсь использовать другой foreach из другой таблицы для формирования одной таблицы HTML
как мне ее достичь
<table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th>Customer Name</th>
<th>Issue Type</th>
<th>Description(s)</th>
<th> Status</th>
<th>Priority</th>
<th>Assign</th>
</tr>
</thead>
@foreach ($result as $row)
@foreach ($result1 as $key)
<tbody>
<tr>
<td>{{$row->issue}}</td>
<td>{{$row->description}}</td>
<td> {{ $key->name }}</td>
<td>{{$row->address}}</td>
<td> Assign Customer</td>
<td> {{$row->cname}}</td>
</tr>
</tbody>
@endforeach
@endforeach
</table>