企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
### 主要标签 ##base页面 ``` @yield("title") @yield("content") @section("sidebar") @include("admin.sidebar") @show @yield("js") ``` ##子页面 ``` @extends("admin.default"); @section("title","网站配置"); //短内容可以直接写在后面 @section("content") 内容区域 @endsection ```