From beb26e269f94d53af2981489e7330279da330b34 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 4 Mar 2026 14:12:55 +0100 Subject: [PATCH] remove the registration of id_user in UsersBankingAccountVerification table --- app/Http/Controllers/WalletController.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Http/Controllers/WalletController.php b/app/Http/Controllers/WalletController.php index c12b1bc..36341aa 100755 --- a/app/Http/Controllers/WalletController.php +++ b/app/Http/Controllers/WalletController.php @@ -591,7 +591,6 @@ INNER JOIN countries c ON oc.id_country = c.id INNER JOIN type_operators top ON $user_banking_account_verif = new UsersBankingAccountVerification(); $user_banking_account_verif->id_transaction = $this->getTransactionID(); $user_banking_account_verif->iban = $request->iban; - $user_banking_account_verif->id_user = $user->id; // Ajouté pour la cohérence $user_banking_account_verif->user_code = $user->user_code; $user_banking_account_verif->id_bank_country = $request->id_bank; $user_banking_account_verif->is_verified = 0;