Index.php 516 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 前台管理演示
  7. */
  8. namespace app\demo\controller\manage;
  9. use app\common\controller\Manage;
  10. class Index extends Manage{
  11. /**
  12. * 默认方法方式
  13. * @return void
  14. */
  15. public function Index(){
  16. $view['hello'] = 'Hello!SAPI++ Passport Page';
  17. return view()->assign($view);
  18. }
  19. }