fix: use options prop

This commit is contained in:
hackerESQ
2025-04-11 21:49:06 -05:00
parent f72cd6f5a7
commit bd9c828c68
+1 -1
View File
@@ -104,7 +104,7 @@ class User extends Authenticatable implements MustVerifyEmail
$options = is_array($key) ? $key : [$key => $value]; $options = is_array($key) ? $key : [$key => $value];
$this->user->options = array_merge($this->user->options ?? [], $options); $this->options = array_merge($this->options ?? [], $options);
return $this; return $this;
} }