We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09ee1a9 commit 387e94cCopy full SHA for 387e94c
app/Http/Requests/Auth/LoginRequest.php
@@ -80,6 +80,10 @@ public function ensureIsNotRateLimited(): void
80
*/
81
public function throttleKey(): string
82
{
83
- return Str::transliterate(Str::lower($this->string('email')).'|'.$this->ip());
+ return $this->string('email')
84
+ ->lower()
85
+ ->append('|'.$this->ip())
86
+ ->transliterate()
87
+ ->value();
88
}
89
0 commit comments