mirror of
https://github.com/v2board/v2board.git
synced 2025-06-14 21:57:50 +08:00
split router
This commit is contained in:
@ -12,12 +12,12 @@ class ClientRoute
|
||||
'middleware' => 'client'
|
||||
], function ($router) {
|
||||
// Plan
|
||||
$router->get('plan/fetch', 'Guest\\PlanController@fetch');
|
||||
$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');
|
||||
$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');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user