<?php @foreach($all_published_products as $product) <div> <div class="product-image-wrapper"> <div class="single-products"> <div class="productinfo text-center"> <img style="height: 150px;" src="{{URL::to($product->product_image)}}" alt="" /> <h5>{{$product->product_price}}</h5> <p>{{$product->product_name}}</p> <div style=""> @include('items.btn_add_cart_slider') </div> </div> </div> </div> </div> @endforeach?>
2 回答

慕標(biāo)琳琳
TA貢獻(xiàn)1830條經(jīng)驗(yàn) 獲得超9個(gè)贊
您可以使用loop變量 https://laravel.com/docs/5.5/blade#the-loop-variable
@foreach($all_published_products as $product)
@if($loop->index > 2)
@breack
@endif
.........
@endforeach
- 2 回答
- 0 關(guān)注
- 159 瀏覽
添加回答
舉報(bào)
0/150
提交
取消