veikejin / config
Config extension for laravel-admin
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/veikejin/config
Requires
- php: >=7.0.0
- encore/laravel-admin: ~1.6
- laravel/framework: ~5.5
Requires (Dev)
- laravel/laravel: ~5.5
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2025-10-15 02:16:43 UTC
README
$ composer require veikejin/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\ServiceProvider; class AppServiceProvider extends ServiceProvider { public function boot() { if (class_exists(Config::class)) { Config::load(); } } }
Then run:
$ php artisan admin:import config
Open http://your-host/admin/config2222