我试图在动态选项卡中显示数据库中的数据,所以我有两个表......队列和站。队列表车站表现在我想以检索所有站导航选项卡和所有的队列,在目标计划选项卡内容我试过如下。<ul class="nav nav-tabs">@forelse ($stations as $station) <li ><a data-toggle="tab" href="#tab-{{ $station->id }}" > {!! $station->name !!} </a></li>@empty@endforelse</ul><div style="margin-top: 15%" class="tab-content"> @foreach($queues as $station_id => $item) <div id="tab-{{ $station->id }}" class="tab-pane fade"> @foreach($item as $queue) <p>{!! $queue->bus_number !!}</p> @endforeach </div> @endforeach</div>有谁知道另一种方法来做到这一点?同样,想要在第一个导航选项卡和选项卡内容中显示所有站,我想获取所有目标站的队列。谢谢,伙计们!
1 回答
红糖糍粑
TA贡献1815条经验 获得超6个赞
更新这部分。 $station->id to $station_id
<div style="margin-top: 15%" class="tab-content">
@foreach($queues as $station_id => $item)
<div id="tab-{{ $station->id }}" class="tab-pane fade">
@foreach($item as $queue)
<p>{!! $queue->bus_number !!}</p>
@endforeach
</div>
@endforeach
</div>
- 1 回答
- 0 关注
- 185 浏览
添加回答
举报
0/150
提交
取消