PHP code example of wiaamtaleb / laravel-db-encryption

1. Go to this page and download the library: Download wiaamtaleb/laravel-db-encryption 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/ */

    

wiaamtaleb / laravel-db-encryption example snippets


    
    use wiaamtaleb\LaravelDbEncryption\Traits\Encryptable;

    class User extends Eloquent {
        use Encryptable;
       
        /** @var array The attributes that should be encrypted/decrypted */
        protected $encryptable = [
            'first_name', 
            'last_name',
            'email',
        ];
    }