where('language_id', '=', $language); } // 首页推荐状态范围查询 public function scopeRecommend($query, bool $stat = true) { return $query->where('recommend', '=', (int)$stat); } // 启用状态范围查询 public function scopeEnabled($query, bool $stat = true) { return $query->where('enabled', '=', (int)$stat); } }