dedermus/config

Config extension for open-admin-core, thanks to z-song

Installs: 35

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 4

pkg:composer/dedermus/config

2.0.1 2024-09-03 14:31 UTC

This package is not auto-updated.

Last update: 2025-10-28 19:51:01 UTC


README

StyleCI Packagist Total Downloads Pull request welcome

Documentation

Screenshot

config screenshot

Installation

$ composer require dedermus/config

$ php artisan migrate

Open app/Providers/AppServiceProvider.php, and call the Config::load() method within the boot method:

<?php

namespace App\Providers;

use OpenAdminCore\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).