From dde792b97ae3679873dd749f4f2096ed36a80f96 Mon Sep 17 00:00:00 2001 From: Leonid Nikitin Date: Fri, 26 Jul 2024 22:16:34 +0500 Subject: [PATCH] Made it possible to disable captcha. --- app/application/app/Http/Controllers/Site/FeedbackController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/application/app/Http/Controllers/Site/FeedbackController.php b/app/application/app/Http/Controllers/Site/FeedbackController.php index 123e577..dec9747 100644 --- a/app/application/app/Http/Controllers/Site/FeedbackController.php +++ b/app/application/app/Http/Controllers/Site/FeedbackController.php @@ -19,6 +19,7 @@ public function index(Request $request): View return view('site.feedback.index', [ 'project' => $request->get('project'), 'websiteTranslations' => $request->get('websiteTranslations'), + 'captcha' => config('app.captcha', false), ]); }