LaravelPackages.net
Acme Inc.
Toggle sidebar
repat/immutability

A simple Laravel package based on davidmpeace/immutability that allows you to enforce immutable attributes on Eloquent models.

444
1
0.3
About repat/immutability

repat/immutability is a Laravel package for a simple laravel package based on davidmpeace/immutability that allows you to enforce immutable attributes on eloquent models.. It currently has 1 GitHub stars and 444 downloads on Packagist (latest version 0.3). Install it with composer require repat/immutability. Discover more Laravel packages by repat or browse all Laravel packages to compare alternatives.

Last updated

Immutability

repat/immutability is a simple package based on davidmpeace/immutability that is used in your Eloquent models to enforce attribute immutability. Immutable attributes may be only set if they are != null, but once the model is saved, the value can not be changed.

License

Immutability is open-sourced software licensed under the MIT license

Installation

To get started with Immutability, add to your composer.json file as a dependency:

$ composer require davidmpeace/immutability

Basic Usage

To use the Immutability library, you simply need to use the Immutability trait for any model you wish to identify immutable attributes for. Typically, you would want to implement the trait in your super-class so that all your sub-classes will automatically inherit the functionality.

<?php
namespace App;

use Illuminate\Database\Eloquent\Model;
use Eloquent\Attributes\Immutability;

class MyAppSuperModel extends Model
{
    use Immutability;

    protected $immutable = ['id', 'uuid'];
}

Class override.

<?php
namespace App;

class User extends MyAppSuperModel
{
    protected $immutable = ['id', 'uuid', 'username'];
}

Catching exceptions

<?php
namespace App;

use Eloquent\Attributes\Exceptions\ImmutableFieldViolationException;
use Exception;

$user = User::find(1);

try {
    $user->username = "myNewUserName";
    $user->save();
} catch ( ImmutableFieldViolationException $e ) {
   // Handle immutable attribute violation error
} catch ( Exception $e ) {
   // Handle error
}

Star History Chart