All Projects → renoki-co → Eloquent Settings

renoki-co / Eloquent Settings

Licence: apache-2.0
Eloquent Settings allows you to bind key-value pairs to any Laravel Eloquent model. It supports even casting for boolean, float or integer types.

Projects that are alternatives of or similar to Eloquent Settings

Rememberable
Query caching for Laravel
Stars: ✭ 960 (+1252.11%)
Mutual labels:  eloquent, laravel
Laravel Tags
Add tags and taggable behaviour to your Laravel app
Stars: ✭ 1,026 (+1345.07%)
Mutual labels:  eloquent, laravel
Time Traveller
Time travel for your Laravel Models.
Stars: ✭ 36 (-49.3%)
Mutual labels:  eloquent, laravel
Improved Polymorphic Eloquent Builder
🔨 Improved Polymorphic Eloquent Builder
Stars: ✭ 12 (-83.1%)
Mutual labels:  eloquent, laravel
Laravel Reactions
Laravel reactions package for implementing reactions (eg: like, dislike, love, emotion, etc) on Eloquent models.
Stars: ✭ 58 (-18.31%)
Mutual labels:  eloquent, laravel
Eloquent Driver
A package that allows you to store Statamic entries in a database.
Stars: ✭ 28 (-60.56%)
Mutual labels:  eloquent, laravel
Freelancers Market
Laravel Project to help freelance websites clients and freelancers to find each other.
Stars: ✭ 39 (-45.07%)
Mutual labels:  eloquent, laravel
Validating
Automatically validating Eloquent models for Laravel
Stars: ✭ 906 (+1176.06%)
Mutual labels:  eloquent, laravel
Xero Laravel
💸 Access the Xero accounting system using an Eloquent-like syntax
Stars: ✭ 58 (-18.31%)
Mutual labels:  eloquent, laravel
Laravel Graphql
GraphQL implementation with power of Laravel
Stars: ✭ 56 (-21.13%)
Mutual labels:  eloquent, laravel
Lighthouse Utils
An add-on to Lighthouse to auto-generate CRUD actions from types https://github.com/nuwave/lighthouse
Stars: ✭ 26 (-63.38%)
Mutual labels:  eloquent, laravel
Watchable
Enable users to watch various models in your application.
Stars: ✭ 65 (-8.45%)
Mutual labels:  eloquent, laravel
Eloquent Filter
This simple package helps you filter Eloquent data using query filters.
Stars: ✭ 24 (-66.2%)
Mutual labels:  eloquent, laravel
Gorose
GoRose(go orm), a mini database ORM for golang, which inspired by the famous php framwork laravle's eloquent. It will be friendly for php developer and python or ruby developer. Currently provides six major database drivers: mysql,sqlite3,postgres,oracle,mssql, Clickhouse.
Stars: ✭ 947 (+1233.8%)
Mutual labels:  eloquent, laravel
Eloquent Sortable
Sortable behaviour for Eloquent models
Stars: ✭ 914 (+1187.32%)
Mutual labels:  eloquent, laravel
Lara Eye
Filter your Query\Builder using a structured query language
Stars: ✭ 39 (-45.07%)
Mutual labels:  eloquent, laravel
Simple Cache
An easy to use Caching trait for Laravel's Eloquent Models.
Stars: ✭ 19 (-73.24%)
Mutual labels:  eloquent, laravel
Eloquent Ldap
A Laravel 5.1 package that first tries to log the user against the internal database if that fails, it tries against the configured LDAP/AD server.
Stars: ✭ 19 (-73.24%)
Mutual labels:  eloquent, laravel
Laravel Settings
Simple Settings package for a laravel application
Stars: ✭ 45 (-36.62%)
Mutual labels:  settings, laravel
Eloquentfilter
An Eloquent Way To Filter Laravel Models And Their Relationships
Stars: ✭ 1,113 (+1467.61%)
Mutual labels:  eloquent, laravel

Laravel Eloquent Settings

CI codecov StyleCI Latest Stable Version Total Downloads Monthly Downloads License

Eloquent Settings allows you to bind key-value pairs to any Laravel Eloquent model.

🤝 Supporting

Renoki Co. on GitHub aims on bringing a lot of open source projects and helpful projects to the world. Developing and maintaining projects everyday is a harsh work and tho, we love it.

If you are using your application in your day-to-day job, on presentation demos, hobby projects or even school projects, spread some kind words about our work or sponsor our work. Kind words will touch our chakras and vibe, while the sponsorships will keep the open source projects alive.

ko-fi

🚀 Installation

Install the package:

$ composer require rennokki/eloquent-settings

Publish the config:

$ php artisan vendor:publish --provider="Rennokki\Settings\SettingsServiceProvider" --tag="config"

Publish the migrations:

$ php artisan vendor:publish --provider="Rennokki\Settings\SettingsServiceProvider" --tag="migrations"

🙌 Usage

You can add the HasSettings trait to any Eloquent model:

use Rennokki\Settings\Traits\HasSettings;

class User extends Model {
    use HasSettings;
    ...
}

Adding settings

$user->newSetting('subscribed.to.newsletter', 1);
$user->newSetting('subscribed.to.newsletter', true);

By default, settings' values are stored as string. Later, if you try to get them with cast, they will return the value you have initially stored. If you store 'true' as a string, if you cast it to a boolean, you'll get true.

If you plan to store it with cast type other than string, you can pass an additional third parameter that can be either string, boolean, bool, int, integer, float or double.

$user->newSetting('subscribed.to.newsletter', true, 'bool');

Updating settings

Updating settings can be either to values, cast types or both, depending on what has changed.

$user->updateSetting('subscribed.to.newsletter', false, 'bool');

If you don't specify a cast parameter, it will not change, only the value will change, or viceversa.

Getting settings & values

You can get the Setting instance, not the value using getSetting():

$user->getSetting('subscribed.to.newsletter'); // does not accept a cast

If you plan to get the value, you can use getSettingValue():

$user->getSettingValue('subscribed.to.newsletter'); // true, as boolean
$user->getSettingValue('subscribed.to.newsletter', 'int'); // 1, as integer

Remember, when you update or create a new setting, the cast type is stored. By default, next time you don't have to call the cast parameter again because it will cast it the way it was specified on storing.

$user->newSetting('is.cool', true, 'bool');
$user->getSettingValue('is.cool'); // it returns true as boolean

Getting values of not-known settings keys, you will return null.

$user->getSettingValue('subscribed.to.weekly.newsletter'); // null

Deleting a setting

Deleting settings from the database can be done using deleteSetting().

$user->deleteSetting('subscribed.to.newsletter');

To delete all settings, call deleteSettings().

$user->deleteSettings();

🐛 Testing

vendor/bin/phpunit

🤝 Contributing

Please see CONTRIBUTING for details.

🔒 Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

🎉 Credits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].