|
|
|
@ -12,6 +12,7 @@ $api->group(['namespace' => 'V1','middleware'=>'auth.api'], function ($api) { |
|
|
|
$api->post('user/recharge','UserWalletController@recharge');//用户充币 |
|
|
|
$api->post('user/rechargeDispose','UserWalletController@recharge_dispose');//用户处理 |
|
|
|
$api->post('user/depositHistory','UserWalletController@deposit_history');//用户充币记录 |
|
|
|
$api->get('user/wdcode','UserWalletController@wdcode');//提币验证码 |
|
|
|
$api->post('user/withdraw','UserWalletController@withdraw')->middleware(['checkTopAuth']);//用户提币 |
|
|
|
$api->post('user/withdrawDispose','UserWalletController@withdraw_dispose');//用户提币处理 |
|
|
|
$api->post('user/withdrawalRecord','UserWalletController@withdrawal_record');//用户提币记录 |
|
|
|
@ -21,7 +22,7 @@ $api->group(['namespace' => 'V1','middleware'=>'auth.api'], function ($api) { |
|
|
|
$api->post('user/fundsTransfer','UserWalletController@funds_transfer');//钱包资金划转 |
|
|
|
$api->post('user/sustainableAccount','UserWalletController@sustainable_account');//永续资金账户 |
|
|
|
$api->post('user/fundAccount','UserWalletController@fund_account')->middleware(['checkUserWallet']);//资金账户 |
|
|
|
|
|
|
|
|
|
|
|
$api->any('user/rechargeManualLog', 'UserWalletController@recharge_manual_log'); //手动充值记录 |
|
|
|
$api->post('user/rechargeManualPost', 'UserWalletController@recharge_manual_post'); //手动充值提交 |
|
|
|
$api->any('user/paypal', 'UserWalletController@paypal'); //Paypal配置获取 |
|
|
|
|