我想使用 for 和 foreach 循环根据提供的模板表显示数据,但是当 else 条件始终显示其自己的索引时
这是我的期望:
这是我的数据:
这现在正在发生:
这是我的代码:
@for ($i = 0; $i < 7; $i++)
@foreach ($scheduleDetails as $item)
@if ($i == $item->day)
<td class="p-1">
<input name="from[]" value="{{substr($item->from_time,0,-3)}}" id="from{{$i}}" style="width:50px;margin:auto" class="text-center" type="text" readonly>
</td>
<td class="p-1">
<input name="until[]" value="{{substr($item->until_time,0,-3)}}" id="until{{$i}}" style="width:50px;margin:auto" class="text-center" type="text" readonly>
</td>
@else
<td>{{$i}}</td>
@endif
@endforeach
@endfor
谢谢..
慕莱坞森