diff --git a/app/AdminAgent/routes.php b/app/AdminAgent/routes.php index 76f104c..4058faa 100644 --- a/app/AdminAgent/routes.php +++ b/app/AdminAgent/routes.php @@ -26,6 +26,7 @@ Route::group([ $router->resource('industry_product/list', 'IndustryProductController'); $router->resource('industry_order/list', 'IndustryOrderController'); $router->get('industry_order/qrcode/{verify_code}', 'IndustryOrderController@qrcode'); + $router->get('industry_order/pay', 'IndustryOrderController@pay'); $router->resource('demand', 'DemandController'); $router->resource('demand_bidding', 'DemandBiddingController'); diff --git a/routes/api.php b/routes/api.php index 90d3495..bfaad21 100644 --- a/routes/api.php +++ b/routes/api.php @@ -21,6 +21,9 @@ use Illuminate\Support\Facades\Route; # 登录 Route::post('login', 'App\Http\Controllers\Api\LoginController@login'); +# 行业产品微信支付回调 +Route::any('industry_product/wxpay/notify', 'App\Http\Controllers\IndustryProductWxpay@notify')->name('industry_product_wxpay_notify'); + # 微信相关 Route::namespace('App\Http\Controllers\Api')->group(function () { # 微信支付