liuhelong/laravel-admin-config

Config extension for laravel-admin

1.1 2022-02-18 08:19 UTC

This package is auto-updated.

Last update: 2024-04-18 12:50:30 UTC


README

prower by https://github.com/laravel-admin-extensions/config

Screenshot

wx20170810-100226

Installation

$ composer require liuhelong/laravel-admin-config

$ php artisan migrate

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

<?php

namespace App\Providers;

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