Giter Site home page Giter Site logo

setting's Introduction

Laravel Settings

Laravel 5.x Settings help your key value to persist.

Build Status Scrutinizer Code Quality Code Coverage Latest Stable Version Latest Unstable Version License

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,
];

setting's People

Contributors

chenbidepro avatar lifeagin avatar tangqi198707 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.