public function totalArticles(){
return $this->updates()->count() + $this->events()->count();
}}
这是我的模型,我想使用orderBy来订购从最小到最大的形式
答案 0 :(得分:1)
如果您想通过created_date获取记录订单
<强>升序:强>
$result = ModelName::latest();
降序:
$result = ModelName::oldest();
除了日期
$result = ModelName::orderBy('id', 'ASC')->get(); // ascending
$result = ModelName::orderBy('id', 'DESC')->get(); // descending