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',
'middleware' => 'client'
], function ($router) {
// Plan
$router->get ('/plan/fetch', 'Guest\\PlanController@fetch');
// Order
$router->post('/order/alipayNotify', 'Guest\\OrderController@alipayNotify');
$router->post('/order/stripeNotify', 'Guest\\OrderController@stripeNotify');
$router->post('/order/bitpayXNotify', 'Guest\\OrderController@bitpayXNotify');
$router->post('/order/payTaroNotify', 'Guest\\OrderController@payTaroNotify');
// Client
Route::get('/subscribe', 'ClientController@subscribe');
// App
Route::get('/app/data', 'AppController@data');
Route::get('/app/config', 'AppController@config');
});
}
}