open-admin-ext/config
最新稳定版本:v1.0
Composer 安装命令:
composer require open-admin-ext/config
包简介
Config extension for open-admin, thanks to z-song
关键字:
README 文档
README
Screenshot
Installation
$ composer require open-admin-ext/config
$ php artisan migrate
Open app/Providers/AppServiceProvider.php, and call the Config::load() method within the boot method:
<?php namespace App\Providers; use OpenAdmin\Admin\Config\Config; use Illuminate\Support\Facades\Schema; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { public function boot() { $table = config('admin.extensions.config.table', 'admin_config'); if (Schema::hasTable($table)) { Config::load(); } } }
Then run:
$ php artisan admin:import config
Open http://your-host/admin/config
Usage
After add config in the panel, use config($key) to get value you configured.
License
Licensed under The MIT License (MIT).
统计信息
- 总下载量: 8.04k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-07-20