答案 0 :(得分:1)
将此添加到您的控制器
$data['count'] = your_table::where('cat_id',17)->count();
return view("YOUR_VIEW_PATH", $data);
在刀片模板中使用它
<div>{!! $count !!}</div>
答案 1 :(得分:0)
使用sql查询
SELECT COUNT(*) from table_name where cat_id = 17
或者,如果您有$rows = data_array
之类的查询结果,则可以使用php之类的
$count = count(array_filter($rows, function($item) { return $item['cat_id'] === 17; }));