lukasss93/laravel-model-settings
Add per-model settings to Eloquent with defaults, validation rules, and optional config publishing. Store and retrieve settings directly on your models, initialize settings on creation, and keep your app flexible with PHP 8+ and Laravel 8+ support.

Model Settings for your Laravel app
The package requires PHP ^8.0 and follows the FIG standards PSR-1, PSR-2, PSR-4 and PSR-12 to ensure a high level of interoperability between shared PHP.
Bug reports, feature requests, and pull requests can be submitted by following our Contribution Guide.
This package is a fork of glorand/laravel-model-settings and contains some breaking changes to make it more flexible and easier to use.
defaultSettings property to methodsettingsRules property to methodGlorand\Model\Settings namespace to Lukasss93\ModelSettingsdefaultSettings from model_settings.php config filecomposer require lukasss93/laravel-model-settings
Publishing the config file is optional:
php artisan vendor:publish --provider="Lukasss93\ModelSettings\ModelSettingsServiceProvider"
Your models should use the HasSettingsField or HasSettingsTable trait.
HasSettingsField traitRun the php artisan model-settings:model-settings-field in order to create a migration file for a table.
This command will create a json field (default name settings, from config) for the mentioned table.
The default name of the field is settings; change the config or env value MODEL_SETTINGS_FIELD_NAME if you want to
rewrite the default name (before you run the command!)
You can choose another than default, in this case you have to specify it in you model.
public $settingsFieldName = 'user_settings';
Complete example:
use Lukasss93\ModelSettings\Traits\HasSettingsField;
class User extends Model
{
use HasSettingsField;
//define only if you select a different name from the default
public $settingsFieldName = 'user_settings';
}
HasSettingsTable traitRun before the command php artisan model-settings:model-settings-table.
The command will copy for you the migration class to create the table where the setting values will be stored.
The default name of the table is model_settings; change the config or env value MODEL_SETTINGS_TABLE_NAME if you want to rewrite the default name (before you run the command!)
use Lukasss93\ModelSettings\Traits\HasSettingsTable;
class User extends Model
{
use HasSettingsTable;
}
HasSettingsRedis traituse Lukasss93\ModelSettings\Traits\HasSettingsRedis;
class User extends Model
{
use HasSettingsRedis;
}
$user = App\User::first();
$user->settings()->empty();
$user->settings()->exist();
$user->settings()->all();
$user->settings()->get();
$user->settings()->get('some.setting');
$user->settings()->get('some.setting', 'default value');
//multiple
$user->settings()->getMultiple(
[
'some.setting_1',
'some.setting_2',
],
'default value'
);
$user->settings()->apply((array)$settings);
$user->settings()->set('some.setting', 'new value');
$user->settings()->update('some.setting', 'new value');
//multiple
$user->settings()->setMultiple([
'some.setting_1' => 'new value 1',
'some.setting_2' => 'new value 2',
]);
$user->settings()->has('some.setting');
$user->settings()->delete('some.setting');
//multiple
$user->settings()->deleteMultiple([
'some.setting_1',
'some.setting_2',
]);
//all
$user->settings()->clear();
In case of field settings the auto-save is configurable.
The default value is true
protected $persistSettings = true; //boolean
MODEL_SETTINGS_PERSISTENT=true
'settings_persistent' => env('MODEL_SETTINGS_PERSISTENT', true),
If the persistence is false you have to save the model after the operation.
settings()If you prefer to use another name other than settings ,
you can do so by defining a $invokeSettingsBy property.
This forward calls (such as configurations()) to the settings() method.
You can set default configs for a model:
use Lukasss93\ModelSettings\Traits\HasSettingsTable;
class User extends Model
{
use HasSettingsTable;
public function defaultSettings(): array
{
return [
'foo' => 'bar',
];
}
}
You can initialize settings at model creation by defining a initSettings property in your model:
use Lukasss93\ModelSettings\Traits\HasSettingsTable;
class User extends Model
{
use HasSettingsTable;
public bool $initSettings = true;
public function defaultSettings(): array
{
return [
'foo' => 'bar',
];
}
}
When you're using the set(), apply(), update() methods thrown an exception when you break a rule.
You can define rules on model using settingsRules public method, and the rules array definition is identical with
the Laravel default validation rules.
class User extends Model
{
use HasSettingsTable;
public function defaultSettings(): array
{
return [
'info' => [
'email' => 'user@test.com'
'age' => 27,
],
'language' => 'en',
'max_size' => 12,
];
}
public function settingsRules(): array
{
return [
'info' => 'array',
'info.email' => ['string','email'],
'info.age' => 'integer',
'language' => 'string|in:en,es,it|max:2',
'max_size' => 'int|min:5|max:15',
];
}
}
Please see CHANGELOG for more information what has changed recently.
The MIT License (MIT). Please see LICENSE for more information.
How can I help you explore Laravel packages today?