group([ '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'); }); } }