open-admin-ext/config
Config extension for open-admin, thanks to z-song
12,205
4
| Install | |
|---|---|
composer require open-admin-ext/config |
|
| Latest Version: | v1.0 |
| PHP: | >=7.0.0 |
| License: | MIT |
| Last Updated: | Jun 5, 2025 |
| Links: | GitHub · Packagist |
Maintainer: open-admin-org
Config manager for open-admin
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).
Related Packages
thetispro/laravel5-setting
Persistent configuration settings for Laravel 5 - Create, Read, Update and Delet...
9,668
24