'Pending Verification', self::ACTIVE => 'Active', self::SUSPENDED => 'Suspended', self::INACTIVE => 'Inactive', }; } public function color(): string { return match ($this) { self::PENDING => '#F59E0B', self::ACTIVE => '#10B981', self::SUSPENDED => '#EF4444', self::INACTIVE => '#6B7280', }; } public function canAcceptOrders(): bool { return $this === self::ACTIVE; } }