我有一个带有产品自动填充/自动装载选项的Laravel 5商店。
我可以上传许多产品,买家购买后立即从DB获得该商品。
不,我想要数量可用于自动提取的产品数量。
有了这个,我得到了一个产品保存在DB中的所有产品:
{{$product->autofill}}
但我只想从数量中获得数量。
我尝试了很多其他的:
<?php $count = DB::table('products')->where(['autofill' => $product->autofill])->count(); echo $count; ?>
和
<?php $count = DB::table('products')->whereIn('autofilled', [1])->where(['autofill' => $product->autofill])->count(); echo $count; ?>
但是对我不起作用。因为它的所有项目不仅仅是我访问的一个项目。 每个产品都必须可见。
Example:
Sugar: 12 Products Available for Autoshipping
Milk: 35 Products Available for Autoshipping
但我不能只计算表格,因为所有自动填充项目都在一行中。
有人可以帮我吗?
由于