'primary', static::Publishing => 'blue', static::Unstart => 'danger', static::Running => 'success', static::Closed => 'gray', }; $background = Admin::color()->get($color, $color); $name = static::options()[$this->value] ?? 'Unknown'; return "{$name}"; } public static function options() { return [ static::Created->value => '已创建', static::Publishing->value => '发布中', static::Unstart->value => '未开始', static::Running->value => '进行中', static::Closed->value => '已结束', ]; } }