| 1234567891011121314151617 |
- <?php
- // 支付配置
- return [
- 'fastPay' => [
- 'pay_url' => 'https://api.fastpag.com',
- 'appID' => '',
- 'secretKey' => '',
- 'payFastKey' => '',
- 'notify' => env('APP_URL', '').'/api/fastpay/notify',
- 'syncNotify' =>env('APP_URL', '').'/api/fastpay/sync_notify',
- 'cashierNotify' => env('APP_URL', '').'/api/fastpay/cash_notify',
- 'agentCashierNotify' => env('APP_URL', '').'/api/fastpay/cash_notify',
- ],
- ];
|