super-admin-org / config
Config extension for super-admin, thanks to z-song
Installs: 861
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/super-admin-org/config
Requires
- php: >=7.0.0
- laravel/framework: >=7.0
- super-admin-org/super-admin: ^1.0
Requires (Dev)
- laravel/laravel: >=7.0
- phpunit/phpunit: >=6.0
README
Screenshot
Installation
$ composer require super-admin-org/config
$ php artisan migrate
Open app/Providers/AppServiceProvider.php, and call the Config::load() method within the boot method:
<?php namespace App\Providers; use SuperAdmin\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).