ibrand / setting
ibrand setting component
Installs: 13 617
Dependents: 8
Suggesters: 0
Security: 0
Stars: 9
Watchers: 2
Forks: 4
Open Issues: 0
Requires
- php: >=7.0
Requires (Dev)
- mockery/mockery: ~0.9
- orchestra/database: ^3.5
- orchestra/testbench: ~3.5
- phpunit/phpunit: ~6.0
README
Laravel 5.x Settings help your key value to persist.
Installation
Composer install
$ composer require ibrand/setting -vvv
If your Laravel version below 5.5, you need add the follow line to the section providers
of config/app.php
:
iBrand\Component\Setting\ServiceProvider::class,
Publishing config file
If you want to edit default config file, just publish it you app config folder.
php artisan vendor:publish --provider="iBrand\Component\Setting\ServiceProvider"
Creating table for database.
Execute artisan command
php artisan migrate
Usage
Change database table name.
If you want to change database table name, you can change config/ibrand/setting.php
after publishing config file.
return [ 'table_name' => 'el_system_settings', 'cache' => true, ];
Use settings() help method.
Set value
settings(['key'=>'value'])
Get Value
settings('key')
Use App make Method.
Set value
app('system_setting')->setSetting(['key'=>'value'])
Get Value
app('system_setting')->getSetting('key')
Disable cache.
Set cache=>false
in config/ibrand/setting.php
file.
return [ 'table_name' => 'el_system_settings', 'cache' => false, ];
果酱云社区
-
全网真正免费的IT课程平台
-
专注于综合IT技术的在线课程,致力于打造优质、高效的IT在线教育平台
-
课程方向包含Python、Java、前端、大数据、数据分析、人工智能等热门IT课程
-
300+免费课程任你选择