seven 3 ngày trước cách đây
mục cha
commit
5841f54b7f

+ 2 - 1
app/Services/Payment/QianBaoService.php

@@ -29,7 +29,8 @@ class QianBaoService extends BaseService
     // 获取异步的通知地址
     public static function getNotifyUrl()
     {
-        return 'https://botpc28.testx2.cc/api/pay/notify';
+        $host = config('app.url');
+        return $host.'/api/pay/notify';
     }
 
     // 获取商户ID

+ 2 - 1
app/Services/Payment/SanJinService.php

@@ -61,7 +61,8 @@ class SanJinService extends BaseService
     // 获取异步的通知地址
     public static function getNotifyUrl()
     {
-        return 'https://botpc28.testx2.cc/api/pay/harvest';
+        $host = config('app.url');
+        return $host.'/api/pay/harvest';
     }