'Aktif', self::INACTIVE => 'Tidak Aktif', self::SUSPENDED => 'Suspend', }; } public function color() { return match ($this) { self::ACTIVE => 'emerald', self::INACTIVE => 'yellow', self::SUSPENDED => 'red', }; } public function icon() { return match ($this) { self::ACTIVE => 'check-circle', self::INACTIVE => 'x-circle', self::SUSPENDED => 'ban', }; } }