PHP code example of mgpl2311 / laravel-db-encrypter
1. Go to this page and download the library: Download mgpl2311/laravel-db-encrypter library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mgpl2311 / laravel-db-encrypter example snippets
use betterapp\LaravelDbEncrypter\Traits\EncryptableDbAttribute;
class Client extends Eloquent {
use EncryptableDbAttribute;
/** @var array The attributes that should be encrypted/decrypted */
protected $encryptable = [
'id_number',
'email',
];
}