paulhenri-l/laravel-encryptable

1.0.0 2021-09-29 22:19 UTC

This package is auto-updated.

Last update: 2024-03-29 04:46:03 UTC


README

PHP Tests PHP Code Style License: MIT

Encrypts your model attributes in the background so that they are encrypted in DB.

Installation

composer require paulhenri-l/laravel-encryptable

Usage

Since encryption makes the values longer think about changing your column type to text.

<?php

namespace App\Models;

class Person extends Illuminate\Database\Eloquent\Model
{
    use PaulhenriL\LaravelEncryptable\Encryptable;

    protected $encryptedFields = [
        'lastname',
        'email'
    ];
}

$person = new Person([
    'lastname' => 'I will be encrypted',
    'email' => 'I will be encrypted too',
]);

echo $person->lastname; // output will not be encrypted

$person->lastname = 'I will be encryted too';