arzeroid/laravel-model-encryptable

A simple trait to encrypt attributes before saving to the database and to decrypt attributes before using their values

Downloads

3

Stars

0

Version

v1.0.0

Laravel Model Encryptable

A simple trait to encrypt attributes before saving to the database and to decrypt attributes before using their values.

Installation

Simply add the following line to your composer.json and run composer update

"arzeroid/laravel-model-encryptable": "^1.0",

Or use composer to add it with the following command

composer require "arzeroid/laravel-model-encryptable"

Usage

Add the trait to your model and set your attributes to be encrypted in encryptable array

<?php

namespace App\Models;

use Arzeroid\LaravelModelEncryptable\Encryptable;

class ActualPersonalCost extends BaseModel
{
    ...
    use Encryptable;
    
    /**
     * The attributes that should be encrypted.
     *
     * @var array
     */
    protected $encryptable = [
        'cost',
    ];

    ...
}
arzeroid

Author

arzeroid