无法在Laravel中查看数据收集

时间:2019-02-19 14:59:54

标签: php html mysql laravel

i返回了两个数据表的集合,其中联接查询作为集合,并按用户ID进行分组。我想在HTML表格上查看它。  我的数据数组如下所示。如何使用laravel刀片将所有数据显示到html表视图中。

enter image description here

1 个答案:

答案 0 :(得分:2)

(如果要将集合发送到刀片模板)。您可以使用foreach循环遍历数组:

@foreach($items as $item)
    <tr>
       <td>{{ $item->fname}}</td>
       <td>{{ $item->lname }}</td>
    </tr>
@endforeach