super-admin-org/config

Config extension for super-admin, thanks to z-song
1,416
Install
composer require super-admin-org/config
Latest Version:v1.0.2
PHP:>=7.0.0
License:MIT
Last Updated:Jun 22, 2025
Links: GitHub  ·  Packagist
Maintainer: talemul

Config manager for super-admin

StyleCI Packagist Total Downloads Pull request welcome

Documentation

Screenshot

config 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).

Related Packages

larapacks/setting

Persistent Laravel configuration settings.

8,641 5
arcanesoft/settings

Persistent settings for ARCANESOFT CMS.

2,574 1
klaravel/settings

Laravel database settings manager.

5,768 4
cornford/setter

An easy way to intergrate Database Settings with Laravel.

1,046 13
thetispro/laravel5-setting

Persistent configuration settings for Laravel 5 - Create, Read, Update and Delet...

9,668 24