Config extension for daimakuai-admin

v1.0.0 2018-08-26 02:21 UTC

This package is not auto-updated.

Last update: 2024-04-14 03:01:28 UTC


README

StyleCI Packagist Total Downloads

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

Screenshot

wx20170810-100226

Installation

$ composer require daimakuai-extensions/config

$ php artisan migrate

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

<?php

namespace App\Providers;

use Jblv\Admin\Config\Config;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
    public function boot()
    {
        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).