Index.php 462 B

1234567891011121314151617
  1. <?php
  2. namespace app\controller\api\game;
  3. class Index
  4. {
  5. public function list()
  6. {
  7. $status = 0;
  8. $list = [
  9. 'name' => '拳魂觉醒',
  10. 'logo' => 'https://cdn.bjtdba.com/chuxubao/images/2026-06-01/b42af202606010920574809.jpg',
  11. 'url' => 'https://m.xingwan001.com/#/gameDetails?gameId=10245&channelId=10245_1_01',
  12. ];
  13. return app('json')->success(['status' => $status, 'list' => $list]);
  14. }
  15. }