daimakuai-ext / config
Config extension for daimakuai-admin
Installs: 35
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
Open Issues: 0
pkg:composer/daimakuai-ext/config
Requires
- php: >=7.0.0
- jblv/daimakuai: >=1.0.0
- laravel/framework: 5.5.*
Requires (Dev)
- laravel/laravel: 5.*
- phpunit/phpunit: ~6.0
This package is not auto-updated.
Last update: 2025-09-28 10:58:44 UTC
README
Inspired by https://github.com/laravel-backpack/settings.
Screenshot
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).