我正在学习laravel 5.1,我只是想知道如何展示让我们说出最畅销的3款产品。目前我可以显示所有产品。
@foreach($products as $product)
<div class="inline">
<img src="{{ asset($product->image) }}" height="150" width="100"/>
<a href="{{route('product.show', $product->id)}}">{{ $product->name }}</a>
<div class="bold2">£{{ $product->price }}</div>
</div>
@endforeach
我的数据库中有一行名为&#39; sale&#39;并包含每个产品的一些随机数。 附:我只是为了学习这个,它不是一个真正的网站。