<!-- Wrapper for slides -->
<div class="carousel-inner">
@foreach($product as $item)
<!-- if id of item is one set to active if not to empty -->
<div class="item {{$item['id']== 1?'active':''}}">
<img src="la.jpg" alt="Chania">
<div class="carousel-caption ">
<h3>Los Angeles</h3>
<p>LA is always so much fun!</p>
</div>
@endforeach
</div>
我已经写了if conditoin,但它不工作,我想显示第一张幻灯片为活动
1条答案
按热度按时间xzlaal3s1#