我想使用以下代码计算得到的输出:
刀刃视图
{{ $kentekens->where('created_at', '>=', Carbon::today()) }}
这将以字符串形式提供输出,但我想计算它获得的匹配数量。
我尝试了以下方法但没有成功:
{{ $kentekens->where('created_at', '>=', Carbon::today()->count()) }}
{{ $kentekens->count()->where('created_at', '>=', Carbon::today()) }}
控制器
public function create() {
$kentekens = Kenteken::latest()
->get();
return view('layouts.dashboard', compact('kentekens'));
}
模型
class Kenteken extends Model {
protected $table = "kenteken";
}
有人知道吗?
最佳答案
正确的语法是:
{{ $kentekens->where('created_at', '>=', Carbon::today())->count() }}
关于php - 我如何在Laravel/Eloquent中使用Carbon时“计数”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48389940/