| Package Data | |
|---|---|
| Maintainer Username: | kduma |
| Maintainer Contact: | oss@krystian.duma.sh (Krystian Duma) |
| Package Create Date: | 2015-01-31 |
| Package Last Update: | 2025-09-04 |
| Home Page: | https://opensource.duma.sh/libraries/php/eloquent-encryptable |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 03:03:05 |
| Package Statistics | |
|---|---|
| Total Downloads: | 2,074 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 5 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 1 |
Adds possibility to encrypt fields in Laravel Eloquent models.
Add the package to the require section of your composer.json and run composer update
"kduma/eloquent-encryptable": "^1.1"
In your model add following lines:
use \KDuma\Eloquent\Encryptable;
protected $encrypted=['list', 'of', 'fields', 'you', 'wan\'t', 'to', 'encrypt'];
It will be automaticly encrypting and decrypting fields defined in $encrypted property of your model.
Those fields must be string or text for longer values.
A special thanks to Jonathan Stavis, an original code creator that this package is based on.
View this package on Packagist.org: kduma/eloquent-encryptable