PHP code example of premiumfastnet / lara-encrypt-db
1. Go to this page and download the library: Download premiumfastnet/lara-encrypt-db 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/ */
premiumfastnet / lara-encrypt-db example snippets
namespace App;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use PremiumFastNetwork\Traits\EncryptDB; // add this
class User extends Authenticatable
{
use EncryptDB;
/**
* List Attributes For Encrypt
*/
protected $encryptDB = ['token'];
// rest of your model