| Package Data | |
|---|---|
| Maintainer Username: | gizburdt |
| Maintainer Contact: | gijs@appstract.nl (Gijs Jorissen) |
| Package Create Date: | 2017-03-02 |
| Package Last Update: | 2025-04-03 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 03:01:57 |
| Package Statistics | |
|---|---|
| Total Downloads: | 416,300 |
| Monthly Downloads: | 7,475 |
| Daily Downloads: | 69 |
| Total Stars: | 732 |
| Total Watchers: | 18 |
| Total Forks: | 67 |
| Total Open Issues: | 0 |
Global key-value store in the database
You can install the package via composer:
composer require appstract/laravel-options
By running php artisan vendor:publish --provider="Appstract\Options\OptionsServiceProvider" in your project all files for this package will be published. For this package, it's only a migration. Run php artisan migrate to migrate the table. There will now be an options table in your database.
With the option() helper, we can get and set options:
// Get option
option('someKey');
// Set option
option(['someKey' => 'someValue']);
// Check the option exists
option_exists('someKey');
If you want to check if an option exists, you can use the facade:
use Option;
$check = Option::exists('someKey');
Setting a value to a key that already exists will overwrite the value.
It is also possible to set options within the console:
php artisan option:set {someKey} {someValue}
$ composer test
Contributions are welcome, thanks to y'all :)
Appstract is a small team from The Netherlands. We create (open source) tools for webdevelopment and write about related subjects on Medium. You can follow us on Twitter, buy us a beer or support us on Patreon.
The MIT License (MIT). Please see License File for more information.