recaptcha
recaptcha copied to clipboard
How to increase timeout on Laravel?
I'm using setChallengeTimeout in 10 minutes but it doesn't work.
<?php
$response = (new ReCaptcha(ENV('RECAPTCHA_SECRET_KEY')))
->setExpectedAction('homepage')
->setScoreThreshold(0.5)
->setChallengeTimeout(600)
->verify($request->input('_recaptcha'), $request->ip());