|
@@ -46,7 +46,7 @@ Route::post('/campaign/store', 'CampaignController@store');
|
46
|
46
|
Route::post('/product/store', 'ProductController@store');
|
47
|
47
|
|
48
|
48
|
|
49
|
|
-Route::any('payments/wechat-notify', 'PaymentController@notify');
|
|
49
|
+Route::post('/payments/wechat-notify', 'PaymentController@notify');
|
50
|
50
|
|
51
|
51
|
|
52
|
52
|
Route::middleware(['token'])->group(function () {
|
|
@@ -60,5 +60,6 @@ Route::middleware(['token'])->group(function () {
|
60
|
60
|
Route::post('/product_order/store', 'ProductOrderController@store');
|
61
|
61
|
Route::post('/server_info/store', 'ServerInfoController@store');
|
62
|
62
|
Route::post('/company_info/store', 'CompanyInfoController@store');
|
63
|
|
- Route::post('payments/pay', 'PaymentController@buildOrder');
|
|
63
|
+ Route::post('/payments/pay', 'PaymentController@buildOrder');
|
64
|
64
|
});
|
|
65
|
+
|