['required', 'string'], 'password' => ['required', 'string'], ]; } public function authenticate(): void { $this->ensureIsNotRateLimited(); $allSiswa = DummyDataService::getAllSiswa(); $inputNisn = $this->input('nisn'); $inputPassword = $this->input('password'); $userArray = collect($allSiswa)->firstWhere('nisn', $inputNisn); // Jika siswa ditemukan dan passwordnya sama if ($userArray && $userArray['password'] === $inputPassword) { // Simpan data siswa ke session. session(['user_data' => $userArray]); RateLimiter::clear($this->throttleKey()); return; } RateLimiter::hit($this->throttleKey()); throw ValidationException::withMessages([ 'nisn' => trans('auth.failed'), ]); } public function ensureIsNotRateLimited(): void { if (! RateLimiter::tooManyAttempts($this->throttleKey(), 5)) { return; } event(new Lockout($this)); $seconds = RateLimiter::availableIn($this->throttleKey()); throw ValidationException::withMessages([ 'email' => trans('auth.throttle', [ 'seconds' => $seconds, 'minutes' => ceil($seconds / 60), ]), ]); } /** * Get the rate limiting throttle key for the request. */ public function throttleKey(): string { return Str::transliterate(Str::lower($this->string('email')).'|'.$this->ip()); } }