|
|
@@ -195,6 +195,14 @@ Route::group([
|
|
|
$route->get('/exchange/revenueinfo', 'Admin\ExchangeController@revenueInfo');
|
|
|
$route->get('/exchange/cost', 'Admin\ExchangeController@costList');
|
|
|
$route->post('/cost/update/{id}', 'Admin\ExchangeController@costUpdate');
|
|
|
+
|
|
|
+
|
|
|
+ // Reward code admin
|
|
|
+ $route->get('/reward-code', 'Admin\RewardCodeController@index');
|
|
|
+ $route->post('/reward-code', 'Admin\RewardCodeController@store');
|
|
|
+ $route->post('/reward-code/{id}/status', 'Admin\RewardCodeController@updateStatus');
|
|
|
+ $route->get('/reward-code/history', 'Admin\RewardCodeController@records');
|
|
|
+
|
|
|
//充值管理
|
|
|
$route->get('/recharge/config/cash', 'Admin\WithdrawalController@cashier_channel_config')->name('admin.cashier.config');
|
|
|
$route->get('/recharge/list/{history?}', 'Admin\RechargeController@rechargeList');
|
|
|
@@ -749,6 +757,11 @@ Route::group([
|
|
|
$route->post('/holiday-wheel/update', 'Admin\HolidayWheelController@update')->name('admin.holiday-wheel.update');
|
|
|
$route->get('/holiday-wheel/history', 'Admin\HolidayWheelController@history')->name('admin.holiday-wheel.history');
|
|
|
|
|
|
+ // 圣诞大转盘配置
|
|
|
+ $route->any('/christmas-wheel', 'Admin\ChristmasWheelController@index')->name('admin.christmas-wheel');
|
|
|
+ $route->post('/christmas-wheel/update', 'Admin\ChristmasWheelController@update')->name('admin.christmas-wheel.update');
|
|
|
+ $route->get('/christmas-wheel/history', 'Admin\ChristmasWheelController@history')->name('admin.christmas-wheel.history');
|
|
|
+
|
|
|
// Bonus购买回报配置
|
|
|
$route->any('/game-buy-bonus-config', 'Admin\GameBuyBonusConfigController@index')->name('admin.game-buy-bonus-config');
|
|
|
$route->post('/game-buy-bonus-config/update', 'Admin\GameBuyBonusConfigController@update')->name('admin.game-buy-bonus-config.update');
|