antto1/config is a Laravel package for config extension for laravel-admin.
It currently has 1 GitHub stars and 27 downloads on Packagist (latest version v1.4.7.1).
Install it with composer require antto1/config.
Discover more Laravel packages by antto1
or browse all Laravel packages to compare alternatives.
Last updated
Inspired by https://github.com/laravel-backpack/settings.

$ composer require antto1/laravel-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 Encore\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
After add config in the panel, use config($key) to get value you configured.
image有值将会代替value值
Licensed under The MIT License (MIT).