bilan / laravel-encrypt
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/bilan/laravel-encrypt
Requires
- php: ^8.0
- ext-openssl: *
README
-
Use trait for your models when you want to hash attribute, in the database type of field for the attribute should be
TEXT
: -
Example for Model:
use ModelUseEncryptedAttributes;
/**
* @return Attribute
*/
public function host(): Attribute
{
return $this->encryptedAttribute();
}
- Attribute will automatically been hashed for save/update and uhashed when you will initialize the model