Looking to hire Laravel developers? Try LaraJobs

laravel-model-encryptable maintained by arzeroid

Description
A simple trait to encrypt attributes before saving to the database and to decrypt attributes before using their values
Last update
2019/11/27 08:43 (dev-master)
License
Links
Downloads
7

Comments
comments powered by Disqus

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',
    ];

    ...
}