diff --git a/app/Models/Gateway.php b/app/Models/Gateway.php index f6673e793494..f658e84fa15a 100644 --- a/app/Models/Gateway.php +++ b/app/Models/Gateway.php @@ -72,13 +72,15 @@ class Gateway extends StaticModel $link = 'https://dashboard.stripe.com/account/apikeys'; } - $key = 'texts.gateway_help_'.$this->id; - $str = trans($key, [ - 'link' => "Click here", - 'complete_link' => url('/complete'), - ]); + // $key = 'texts.gateway_help_'.$this->id; + // $str = trans($key, [ + // 'link' => "Click here", + // 'complete_link' => url('/complete'), + // ]); - return $key != $str ? $str : ''; + return $link; + + //return $key != $str ? $str : ''; } }