faustoq / laravel-model-encrypt-fields
Encrypt and decrypt model fields
1.0.2
2020-12-03 14:32 UTC
Requires
- php: ^7.3
- illuminate/support: ^7.0 || ^8.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-11-06 21:21:04 UTC
README
Encrypt and decrypt Laravel model fields
Installation
composer require faustoq/laravel-model-encrypt-fields
Note: The package will be autoregistered thanks to the Laravel Package Auto-Discovery.
Publish the configuration file:
php artisan vendor:publish --provider="ModelEncryptFields\ServiceProvider"
Usage
<?php namespace App; use Illuminate\Database\Eloquent\Model; use ModelEncryptFields\EncryptsAttributes; class User extends Model { // Add EncryptAttributes trait use EncryptsAttributes; // List of fields that should be encrypted in your database protected $encrypts = [ 'email', 'name', ]; }
That's it! Now you can automatically encrypt/decrypt the fields specified in the $encrypts
property in your model.
Examples:
Auto-Encrypt the field name
:
$user->name = "John Doe";
$user->save();
Auto-Decrypt the field name
:
echo "Hello, " . $user->name;