AssociationStatus::class, ]; } public static function configureCipherSweet(EncryptedRow $encryptedRow): void { $encryptedRow ->addOptionalTextField('email') ->addBlindIndex('email', new BlindIndex('email_index')); } public function profile() { return $this->hasOne(Profile::class, 'pubkey', 'pubkey'); } public function paymentEvents() { return $this->hasMany(PaymentEvent::class); } }