LaravelPackages.net
Acme Inc.
Toggle sidebar
ygmt/laravel-admin-config

Config extension for laravel-admin

70
0
v1.1
About ygmt/laravel-admin-config

ygmt/laravel-admin-config is a Laravel package for config extension for laravel-admin. It currently has 0 GitHub stars and 70 downloads on Packagist (latest version v1.1). Install it with composer require ygmt/laravel-admin-config. Discover more Laravel packages by ygmt or browse all Laravel packages to compare alternatives.

Last updated

Config manager for laravel-admin

StyleCI Packagist Total Downloads Pull request welcome

Inspired by https://github.com/laravel-backpack/settings.

Documentation | 中文文档

Screenshot

wx20170810-100226

Installation

$ composer require 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

Usage

After add config in the panel, use config($key) to get value you configured.

License

Licensed under The MIT License (MIT).

Star History Chart