Inspired by https://github.com/laravel-backpack/settings.
$ composer require laravel-admin-ext/config
$ php artisan migrate
Open app/Providers/AppServiceProvider.php
, and call the Config::boot
method within the boot
method:
<?php
namespace App\Providers;
use Encore\Admin\Config\Config;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function boot()
{
Config::boot();
}
}
then run:
$ php artisan admin:import config
Open http://your-host/admin/config
After add config in the panel, use config($key)
to get value you configured.
Licensed under The MIT License (MIT).