PHPackages                             qwince/l5-settings - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. qwince/l5-settings

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

qwince/l5-settings
==================

Persistent settings in Laravel.

v0.4.1(9y ago)1237MITPHPPHP &gt;=5.3.0

Since Nov 7Pushed 8y ago5 watchersCompare

[ Source](https://github.com/qwince/l5-settings)[ Packagist](https://packagist.org/packages/qwince/l5-settings)[ RSS](/packages/qwince-l5-settings/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (5)Dependencies (4)Versions (4)Used By (0)

Laravel Settings
================

[](#laravel-settings)

Persistent, application-wide settings for Laravel.

Installation
------------

[](#installation)

1. `composer require qwince/l5-settings:dev-master`
2. Add `qwince\LaravelSettings\SettingsServiceProvider::class,` to the array of providers in `config/app.php`.
3. Publish config file and migration by running `php artisan vendor:publish --provider="qwince\LaravelSettings\SettingsServiceProvider"`.
4. Optional: add `'Setting' => qwince\LaravelSettings\SettingsFacade::class,` to the array of aliases in `config/app.php`.

Usage
-----

[](#usage)

### Global settings

[](#global-settings)

You can either access the setting store via its facade or inject it by type-hinting towards the abstract class `qwince\LaravelSettings\SettingStore`.

```
