多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# 插件的设置管理 ## 插件的一些相关设置 ### 1、插件设置的连接 - 在`Plugin.php`中使用`registerSettings`方法来扩展插件在后端设置链接。设置左侧连接 ### 2、插件的设置 ``` public function registerSettings() { return [ 'location' => [ 'label' => 'Locations', 'description' => 'Manage available user countries and states.', 'category' => 'Users', 'icon' => 'icon-globe', 'url' => Backend::url('acme/user/locations'), 'order' => 500, 'keywords' => 'geography place placement' ] ]; } ```