where('rule_type', $value); } /** * 类型查询 * * @time 2020年06月30日 * @param $query * @param $value * @param $data * @return mixed */ public function searchTypeAttr($query, $value, $data) { return $query->where('type', $value); } /** * 状态查询 * * @time 2020年06月30日 * @param $query * @param $value * @param $data * @return mixed */ public function searchStatusAttr($query, $value, $data) { return $query->where('status', $value); } }