🤖 Auto commit for release 'develop' on 2025-05-05

This commit is contained in:
JC5
2025-05-05 05:25:13 +02:00
parent 22e092b513
commit 3760aabf13
14 changed files with 57 additions and 52 deletions

View File

@@ -153,10 +153,10 @@ class UniqueIban implements ValidationRule
}
$query
= auth()->user()
->accounts()
->leftJoin('account_types', 'account_types.id', '=', 'accounts.account_type_id')
->where('accounts.iban', $iban)
->whereIn('account_types.type', $typesArray)
->accounts()
->leftJoin('account_types', 'account_types.id', '=', 'accounts.account_type_id')
->where('accounts.iban', $iban)
->whereIn('account_types.type', $typesArray)
;
if (null !== $this->account) {