https://github.com/rawilk/laravel-settings
Store Laravel application settings in the database.
https://github.com/rawilk/laravel-settings
database-settings eloquent-settings laravel-settings settings
Last synced: 21 days ago
JSON representation
Store Laravel application settings in the database.
- Host: GitHub
- URL: https://github.com/rawilk/laravel-settings
- Owner: rawilk
- License: mit
- Created: 2020-08-01T18:06:09.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-05-12T01:50:43.000Z (24 days ago)
- Last Synced: 2025-05-12T02:41:18.155Z (24 days ago)
- Topics: database-settings, eloquent-settings, laravel-settings, settings
- Language: PHP
- Homepage: https://randallwilk.dev/docs/laravel-settings
- Size: 248 KB
- Stars: 240
- Watchers: 5
- Forks: 17
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Settings for Laravel
[](https://packagist.org/packages/rawilk/laravel-settings)

[](https://packagist.org/packages/rawilk/laravel-settings)
[](https://packagist.org/packages/rawilk/laravel-settings)
[](https://github.com/rawilk/laravel-settings/blob/main/LICENSE.md)
Settings for Laravel allows you to store your application settings in the database. It works alongside of the built-in configuration system that Laravel offers. With this package, you can store application specific settings that wouldn't make sense to store in a configuration file, or that you want end-users to be able to update through your application's UI.
The package also offers caching on a per-setting basis out of the box, so no unnecessary extra queries are performed once a setting has been retrieved. The caching works no matter which driver you choose to use. The package can also encrypt your settings automatically for you as well if you need to store sensitive data such as passwords for a third-party service you need to be able to use later.
To get and retrieve stored settings, you can do it easily with the Settings Facade or by using the `settings()` helper function:
```php
// Setting
Settings::set('foo', 'bar');
settings()->set('foo', 'bar');
settings(['foo' => 'bar']);// Retrieving
Settings::get('foo'); // 'bar'
settings()->get('foo');
settings('foo');
```## Documentation
For documentation, please visit: https://randallwilk.dev/docs/laravel-settings
## Installation
You can install the package via composer:
```bash
composer require rawilk/laravel-settings
```You can publish and run the migrations with:
```bash
php artisan vendor:publish --tag="settings-migrations"
php artisan migrate
```You can publish the config file with:
```bash
php artisan vendor:publish --tag="settings-config"
```You can view the default configuration here: https://github.com/rawilk/laravel-settings/blob/main/config/settings.php
## Testing
```bash
composer test
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## Credits
- [Randall Wilk](https://github.com/rawilk)
- [All Contributors](../../contributors)## Alternatives
- [spatie/laravel-settings](https://github.com/spatie/laravel-settings)
## Disclaimer
This package is not affiliated with, maintained, authorized, endorsed or sponsored by Laravel or any of its affiliates.
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.