微信公众号支付
This commit is contained in:
@@ -90,6 +90,20 @@ class WangpuPayService
|
||||
return rtrim((string) config('app.url'), '/') . '/mini/payment/notify';
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付方式代码(公众号 H5 场景优先取 mp_payway_code,留空回退 payway_code)
|
||||
*/
|
||||
public function paywayCode(string $scene = 'mini'): string
|
||||
{
|
||||
if ($scene === 'mp') {
|
||||
$mpPayway = $this->config('mp_payway_code');
|
||||
if ($mpPayway !== '') {
|
||||
return $mpPayway;
|
||||
}
|
||||
}
|
||||
return $this->config('payway_code');
|
||||
}
|
||||
|
||||
/**
|
||||
* 网关 POST 请求:业务报文加密装信封 → JSON 发送 → 校验应答码 → 解密应答
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user