From 2dd3de78665ea316926572bfe7f00e42b086a510 Mon Sep 17 00:00:00 2001 From: Mj Pakzad <3949721+mjpakzad@users.noreply.github.com> Date: Sun, 15 Dec 2024 16:47:48 +0330 Subject: [PATCH] Replace {$options} to fix deprecation Using ${options} in strings is deprecated --- src/ArCaptchaServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ArCaptchaServiceProvider.php b/src/ArCaptchaServiceProvider.php index 7e4b099..4a1b6a2 100644 --- a/src/ArCaptchaServiceProvider.php +++ b/src/ArCaptchaServiceProvider.php @@ -66,7 +66,7 @@ protected function addBladeDirective(): void return ''; }); Blade::directive('arcaptchaWidget', function ($options) { - return ""; + return ""; }); } }