fix client route

This commit is contained in:
Tokumeikoi 2020-02-02 21:59:12 +08:00
parent 073f7611e1
commit c03bd0098d

View File

@ -11,13 +11,11 @@ class ClientRoute
'prefix' => 'client', 'prefix' => 'client',
'middleware' => 'client' 'middleware' => 'client'
], function ($router) { ], function ($router) {
// Plan // Client
$router->get ('/plan/fetch', 'Guest\\PlanController@fetch'); Route::get('/subscribe', 'ClientController@subscribe');
// Order // App
$router->post('/order/alipayNotify', 'Guest\\OrderController@alipayNotify'); Route::get('/app/data', 'AppController@data');
$router->post('/order/stripeNotify', 'Guest\\OrderController@stripeNotify'); Route::get('/app/config', 'AppController@config');
$router->post('/order/bitpayXNotify', 'Guest\\OrderController@bitpayXNotify');
$router->post('/order/payTaroNotify', 'Guest\\OrderController@payTaroNotify');
}); });
} }
} }