This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
sosuke.iwabuchi
/
HT_DASHBOARD
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
email重複チェック修正
develop
sosuke.iwabuchi
1 year ago
parent
97825efeae
commit
daf721f1eb
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
app/Logics/LoginUser/LoginUserLogic.php
+ 1
- 1
app/Logics/LoginUser/LoginUserLogic.php
View File
@@ -42,7 +42,7 @@ class LoginUserLogic
private function checkEmailForCreate()
{
if (User::whereEmail($this->user)
if (User::whereEmail($this->user
->email
)
->exists()
) {
ParamException::throw(User::COL_NAME_EMAIL, trans('validation.unique'));
Write
Preview
Loading…
Cancel
Save