bilan/laravel-encrypt

There is no license information available for the latest version (v1.0.2) of this package.

v1.0.2 2023-10-26 12:15 UTC

This package is auto-updated.

Last update: 2024-09-26 14:12:20 UTC


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