viddhost / oaconfig
Config extension for open-admin, thanks to z-song
0.01
2023-10-02 15:00 UTC
Requires
- php: >=7.0.0
- laravel/framework: >=7.0
- snowsoft/open-admin: ~v0.01
Requires (Dev)
- laravel/laravel: ~7.0
- phpunit/phpunit: ~6.0
This package is not auto-updated.
Last update: 2024-11-12 18:18:26 UTC
README
Installation
$ composer require viddhost/oaconfig
$ php artisan migrate
Open app/Providers/AppServiceProvider.php
, and call the Config::load()
method within the boot
method:
<?php namespace App\Providers; use OpenAdmin\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.
License
Licensed under The MIT License (MIT).