premiumfastnet/

lara-encrypt-db

数据库中加密和解密值

v1.2.1 2020-11-13 07:22 UTC

This package is auto-updated.

Last update: 2024-09-13 16:19:33 UTC


README

Latest Stable Version Latest Unstable Version Total Downloads License StyleCI

数据库中加密和解密值

安装

composer require premiumfastnet/lara-encrypt-db

如何使用

<?php

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