Compare commits

..

No commits in common. "032185b52ca0be00d417f9be50c55bbcea3daac0" and "c39f6ba4d79dab3b90ddee5932cef30e5b67c3f2" have entirely different histories.

2 changed files with 1 additions and 32 deletions

View File

@ -1,33 +1,2 @@
# captcha-rule-for-laravel # captcha-rule-for-laravel
Laravel 10. Rule Validation для сервиса https://git.kor-elf.net/kor-elf/service-captcha.
Параметры в .env.
# CAPTCHA_API_DOMAIN
Указываем адрес к сервису для проверки от робота.
Примеры: http://captcha.localhost:9008, https://captcha.localhost, http://captcha.localhost
# CAPTCHA_PRIVATE_TOKEN
Указываем приватный токен, для проверки со стороны сервера.
# CAPTCHA_CURL_TIMEOUT
Curl timeout в секундах.
По умолчанию: 10
# CAPTCHA_ENABLE_BLADE_CAPTCHA
Включает Blade::directive "captcha" (@captcha).
По умолчанию: true
# CAPTCHA_PUBLIC_TOKEN
Указываем публичный токен, который мы получаем от сервиса для проверки от робота.
# CAPTCHA_STATIC_PATH
Указываем путь к статике.
Примеры: /captcha, https://captcha.localhost/captcha
По умолчанию: env('CAPTCHA_API_DOMAIN') . '/captcha'

View File

@ -17,7 +17,7 @@ final readonly class CaptchaService
try { try {
$post = []; $post = [];
if (!is_null($userAgent)) { if (!is_null($userAgent)) {
$post['user_agent'] = $userAgent; $post['user_ageng'] = $userAgent;
} }
$response = Http::withHeaders([ $response = Http::withHeaders([