Fixed typo
This commit is contained in:
@@ -35,7 +35,7 @@ class LogFailedLogin
|
||||
'user_agent' => request()->header('User-Agent'),
|
||||
'remote_ip' => request()->ip(),
|
||||
'successful' => 0,
|
||||
'created_at' => $now;
|
||||
'created_at' => $now,
|
||||
]
|
||||
);
|
||||
} catch (\Exception $e) {
|
||||
|
||||
@@ -37,7 +37,7 @@ class LogSuccessfulLogin
|
||||
'user_agent' => request()->header('User-Agent'),
|
||||
'remote_ip' => request()->ip(),
|
||||
'successful' => 1,
|
||||
'created_at' => $now
|
||||
'created_at' => $now,
|
||||
]
|
||||
);
|
||||
} catch (\Exception $e) {
|
||||
|
||||
Reference in New Issue
Block a user