IndexController.class.php 169 B

12345678
  1. <?php
  2. namespace Admin\Controller;
  3. use Think\Controller;
  4. class IndexController extends Controller {
  5. public function index(){
  6. $this->display();
  7. }
  8. }