taylornetwork/model-encryption

Adds encryption to Laravel models using Laravel's built in encryption
12 1
Install
composer require taylornetwork/model-encryption
Latest Version:1.0.0
PHP:>=5.4.0
Last Updated:Nov 16, 2016
Links: GitHub  ·  Packagist
Maintainer: samueljtaylor

Model Encryption Trait

This is a trait for Laravel that overrides the default getter and setters to encrypt and decrypt the values using Laravel's builtin encrypt and decrypt functions.

Install

Via Composer

$ composer require taylornetwork/model-encryption

Usage

Include Encryptable trait in any model you want to add encryption and add a $encryptable property with an array of attributes to encrypt/decrypt.


use TaylorNetwork\ModelEncryption\Encryptable;

class DummyModel extends Model
{
    use Encryptable;

    /**
     * Model attributes to encrypt/decrypt
     *
     * @var array
     */
    protected $encryptable = [
        'dummy_attribute'
    ];

    // Code

}

When accessing any property, the Encryptable trait will determine if the attribute is in the $encryptable array, if so, encrypt/decrypt. Otherwise get/set as normal.

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

628,058,007 9,707
laravel/framework

The Laravel Framework.

576,155,700 34,907
laravel/tinker

Powerful REPL for the Laravel framework.

485,678,092 7,440