<?php
namespace app\admin\controller;
//use think\facade\View; //view创建静态代理
use think\Controller;
class Index extends Controller
{
public function index()
{
return $this->fetch();
}
//模板渲染
public function welcome()
{
return $this->fetch();
}
}