// $this 使用必须继承Controller
return $this->fetch();
// 指定模板 推荐
return $this->fetch('edit');
// 指定目录下的模板
return $this->fetch('public/edit');
// 指定模块下的模板
return $this->fetch('admin@public/edit');
// view_path 下的模板
return $this->fetch('/edit');
// 如果没有继承控制器 可以使用助手函数 view
return view('edit');