value => '无', self::Express->value => '快递', self::Pick->value => '自提', ]; } public function text() { return data_get(self::options(), $this->value); } public function color() { return match ($this) { static::None => 'secondary', static::Express => 'primary', static::Pick => 'warning', }; } public function label() { $color = $this->color(); $name = $this->text(); return "{$name}"; } public function dot() { $color = $this->color(); $name = $this->text(); return "  {$name}"; } }