diff --git a/app/Endpoint/Callback/routes.php b/app/Endpoint/Callback/routes.php index 26c68d31..50d2f0f3 100644 --- a/app/Endpoint/Callback/routes.php +++ b/app/Endpoint/Callback/routes.php @@ -10,6 +10,6 @@ Route::post('kuaidi100', [Kuaidi100Controller::class, 'notify']); // 微信支付通知 Route::post('wxpay/{payment}/paid-notify', [WxpayController::class, 'paidNotify'])->name('wxpay.paid_notify'); -Route::post('wxpay/order-refund-notify', [WxpayController::class, 'orderRefundedNotify'])->name('wxpay.order_refund_notify'); +Route::post('wxpay/{payment}/order-refund-notify', [WxpayController::class, 'orderRefundedNotify'])->name('wxpay.order_refund_notify'); Route::post('alipay', AlipayController::class)->name('alipay.notify');