1. Go to this page and download the library: Download involix/elocryptseven 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/ */
use Involix\Elocrypt\Elocrypt;
class User extends Eloquent {
use Elocrypt;
/**
* The attributes that should be encrypted on save.
*
* @var array
*/
protected $encrypts = [
'address_line_1', 'first_name', 'last_name', 'postcode'
];
}
use Involix\Elocrypt\Elocrypt;
class User extends Eloquent {
use Elocrypt;
protected $casts = ['extended_data' => 'array'];
protected $encrypts = ['extended_data'];
}