|
|
|
@ -64,6 +64,12 @@ Route::namespace('App\Http\Controllers\Api')->group(function () { |
|
|
|
Route::prefix('special')->group(function () { |
|
|
|
Route::post('show', 'SpecialController@show'); //专题详情
|
|
|
|
}); |
|
|
|
|
|
|
|
# 微信支付
|
|
|
|
Route::prefix('wxpay')->group(function () { |
|
|
|
Route::post('notify', 'WxpayController@notify'); //异步通知
|
|
|
|
Route::post('refund', 'WxpayController@refund'); //退款通知
|
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
# 需要登录才能请求
|
|
|
|
|