Index.php 225 B

1234567891011121314151617
  1. <?php
  2. namespace addons\example\controller;
  3. use think\addons\Controller;
  4. class Index extends Controller
  5. {
  6. protected $layout = 'default';
  7. public function index()
  8. {
  9. return $this->view->fetch();
  10. }
  11. }