🤖 Auto commit for release 'develop' on 2026-03-14

This commit is contained in:
JC5
2026-03-14 08:44:01 +01:00
parent 8abd2a6604
commit a907f9b2f7
22 changed files with 136 additions and 61 deletions

View File

@@ -38,7 +38,10 @@ class UserGroupTransaction implements BinderInterface
if (auth()->check()) {
/** @var User $user */
$user = auth()->user();
$group = TransactionGroup::where('id', (int) $value)->where('user_group_id', $user->user_group_id)->first();
$group = TransactionGroup::where('id', (int) $value)
->where('user_group_id', $user->user_group_id)
->first()
;
if (null !== $group) {
return $group;
}