| 1234567891011121314151617 |
- <?php
- namespace app\controller\api\game;
- class Index
- {
- public function list()
- {
- $status = 0;
- $list = [
- 'name' => '拳魂觉醒',
- 'logo' => 'https://cdn.bjtdba.com/chuxubao/images/2026-06-01/b42af202606010920574809.jpg',
- 'url' => 'https://m.xingwan001.com/#/gameDetails?gameId=10245&channelId=10245_1_01',
- ];
- return app('json')->success(['status' => $status, 'list' => $list]);
- }
- }
|