gregoryduckworth/encryptable
A simple trait to make attributes encrypted in the database
53,763
19
| Install | |
|---|---|
composer require gregoryduckworth/encryptable |
|
| Latest Version: | 1.0.2 |
| PHP: | >=5.4.0 |
| License: | MIT |
| Last Updated: | Feb 14, 2020 |
| Links: | GitHub · Packagist |
Maintainer: gregoryduckworth
Encryptable, an ecryptable trait for Laravel
Encryptable is a trait for Laravel that adds simple encryptable functions to Eloquent Models.
Encryptable allows you to encrypt data as in enters the database and decrypts it on its retrieval.
Installation
Simple add the package to your composer.json file and run composer update.
"gregoryduckworth/encryptable": "1.*",
Usage
Add the trait to your model and your encryptable rules.
use GregoryDuckworth\Encryptable\EncryptableTrait;
class User extends Authenticatable
{
use EncryptableTrait;
/**
* Encryptable Rules
*
* @var array
*/
protected $encryptable = [
'name',
'email',
];
...
}
Now, whenever you interact with the model, the name and email will automatically be encrypted and decrypted between your frontend and the database.
Contributing
Anyone is welcome to contribute. Fork, make your changes and then submit a pull request.
Related Packages
payamjafari/laravel-db-encrypter
Provides database model attribute encryption/decryption
512
1
attribute
database
database encrypter
database encryption
decrypt
decrypted
decryption
eloquent
encrypt
encrypter
encryption
laravel
laravel attribute encrypter
laravel attribute encryption
laravel database encrypter
laravel database encryption
laravel db encrypter
laravel db encryption
laravel model encrypter
laravel model encryption
laravel mongodb attribute encrypter
mongodb
betterapp/laravel-db-encrypter
Provides database model attribute encryption/decryption
663,991
363
attribute
database
database encrypter
database encryption
decrypt
decrypted
decryption
eloquent
encrypt
encrypter
encryption
laravel
laravel attribute encrypter
laravel attribute encryption
laravel database encrypter
laravel database encryption
laravel db encrypter
laravel db encryption
laravel model encrypter
laravel model encryption
ablunier/laravel-database
Laravel database utilities package. Repository, cache, abstraction layer.
4,438
1