PHP code example of amirhossein5 / encrypted

1. Go to this page and download the library: Download amirhossein5/encrypted 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/ */

    

amirhossein5 / encrypted example snippets




use AmirHossein5\Encrypted\Encrypted;

class User extends Authenticatable
{
    // ...

    protected $casts = [
        'name' => Encrypted::class,
        'email' => Encrypted::class,
    ];
}