gpt4 book ai didi

php - 同时使用 foreach 和 for work 制作表格

转载 作者:行者123 更新时间:2023-11-29 20:27:48 25 4
gpt4 key购买 nike

这里我想制作一个表格,其中的行数将根据$ kosts-> stock_room中的数据自动生成。然后我还想将数据直接与表residents上的数据按房间号排列,所以如果我在表'residents'中有房间号10的数据 它将用 10 行填充表格。

这是我的代码:

<table class="table table-hover table-striped">
<tr>
<th width="10%">Action</th>
<th>Room</th>
<th>Kost</th>
<th>Name</th>
<th>Due Date</th>
</tr>
<tr>
@foreach($posts as $row)
@for($i=1;$i<=$kosts->stock_room;$i++)
<tr>
<td>
<a title='Edit Data' class='btn btn-xs btn-warning' href='{{ url("resident/edit/$i") }}'><i class='fa fa-pencil'></i></a>
<a title='Delete Data' class='btn btn-xs btn-danger' href='{{ url("resident/delete/$i") }}' onclick="return confirm('sure to delete ?')"><i class='fa fa-trash'></i></a>
</td>
<td>{{$i}}</td>
<td></td>
<td>{{$row->name}}</td>
<td></td>
</tr>
@endfor
@endforeach
</tr>
</table>

有人可以帮助我,让我的代码能够完全按照我想要的方式工作吗?

我现在的错误结果:我的数据总是在循环

image

它应该是这样的:(在那里我只做了 10 行)

should be

我的表中的数据:

table

例如,我有房间号为 9 的数据,因此我的房间号为 9 的表格填充了房间号为 9 的数据库中的数据>

我很抱歉我的英语不好

最佳答案

试试这个:

@foreach($posts as $row)
@for($i=1;$i<=$kosts->stock_room;$i++)

<tr>
..... // Put <tr> inside loop so that it can generate a new table row for each iteration
</tr>

@endfor
@endforeach

关于php - 同时使用 foreach 和 for work 制作表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39198427/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com