<?php
namespace app\admin\controller;
//引入控制器
use think\Controller;
//继承控制器
class Index extends Controller
{
//渲染index模板
public function index()
return $this->fetch();
}
//渲染welcome模板
public function welcome()