Index.php 237 B

12345678910111213141516
  1. <?php
  2. namespace app\index\controller;
  3. class Index extends Base
  4. {
  5. public function __construct()
  6. {
  7. parent::__construct();
  8. }
  9. public function index()
  10. {
  11. return $this->label_fetch('index/index');
  12. }
  13. }