Skip to content

antto1/laravel-admin-ext-config

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 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

Usage

After add config in the panel, use config($key) to get value you configured. image有值将会代替value

License

Licensed under The MIT License (MIT).

About

Config manager for laravel-admin

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%