开发者社区> 问答> 正文

如何使用来自不同表的多个foreach形成单个html表?

我正在尝试使用来自不同表的不同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>

展开
收起
被纵养的懒猫 2019-09-23 17:22:26 449 0
0 条回答
写回答
取消 提交回答
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
《零基础HTML入门教程》 立即下载
天猫 HTML5 互动技术实践 立即下载
天猫HTML5互动技术实践 立即下载