PHP code example of payamjafari / laravel-db-encrypter
1. Go to this page and download the library: Download payamjafari/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/ */
payamjafari / laravel-db-encrypter example snippets
use Jenssegers\Mongodb\Eloquent\Model;
use betterapp\LaravelDbEncrypter\Traits\EncryptableDbAttribute;
class Client extends Model {
use EncryptableDbAttribute;
/** @var array The attributes that should be encrypted/decrypted */
protected array $encryptable = [
'id_number',
'email',
];
}