where('status', '=', 10)->where('lottery_id', '=', $lottery_id)->select(); } /** * 奖项下架列表 */ public static function getlist($data, $lottery_id) { return (new static())->where('status', '=', 20) ->where('lottery_id', '=', $lottery_id) ->paginate($data); } /** * 状态 */ public function getStatusTextAttr($value, $data) { $text = ''; if ($value == 10) { $text = '上架'; } else { $text = '下架'; } return $text; } }