larapack / attribute-encryption
Allows you to define what attributes in your eloquent model which should be encrypted and decrypted.
Installs: 1 914
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Type:package
Requires
This package is auto-updated.
Last update: 2024-11-06 09:32:43 UTC
README
Allows you to define what attributes in your eloquent model which should be encrypted and decrypted.
Installing
Install using Composer composer require larapack/attribute-encryption 1.*
.
Usage
First add the traits Manipulateable
and Encryptable
to your Eloquent Model.
<?php
namespace App;
use Larapack/AttributeManipulating/Manipulateable;
use Larapack/AttributeEncryption/Encryptable;
class User
{
use Manipulateable;
use Encryptable;
/**
* @var array List of attribute names which should be encrypted
*/
protected $encrypt = ['password']; // set the attribute names you which to encrypt/decrypt
//...
}
Now whenever you set the attribute password
it will now be encrypted and whenever you get the attribute it will be decrypted.
Test:
$user = new App\User;
$user->password = 'secret';
echo $user->getOriginalAttribute('password'); // Here you will see the encrypted password
dump($user); // Here you will see the encrypted password
echo $user->password; // Here you will see the decrypted password