Download the PHP package skyraptor/laravel-encryptable-trait without Composer
On this page you can find all versions of the php package skyraptor/laravel-encryptable-trait. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download skyraptor/laravel-encryptable-trait
More information about skyraptor/laravel-encryptable-trait
Files in skyraptor/laravel-encryptable-trait
Package laravel-encryptable-trait
Short Description Laravel encryptable trait, easily make certain fields for eloquent models encryptable
License MIT
Homepage https://github.com/hihaho/laravel-encryptable-trait
Informations about the package laravel-encryptable-trait
Laravel Encryptable Trait
This trait encrypts all your fields (defined in $this->encryptable) before saving it to the database. It makes it extremely easy to treat certain fields as encryptable by automatically encrypting and decrypting the values.
Photoware
This package is free to use, but inspired by Spaties' Poscardware we'd love to see where where this package is being developed. A photo of an important landmark in your area would be highly appreciated.
Our email address is [email protected]
Install
Simply add the following line to your and run
Or use composer to add it with the following command
Requirements
- illuminate/encryption ^6.0, ^7.0, ^8.0 or ^9.0
- PHP 7.2, 7.3, 7.4, 8.0 or 8.1
Usage
Simply add the trait to your models and set the to an array of values that need to be encrypted.
DecryptException
This package will throw a DecryptException (the default Laravel one: ). You can however set to true to ignore the exception. If the value can't be decrypted it will just return null.
If the database contains an invalid value, this will return null.
``