dev-dev
dev-devThis package will be used to encrypt attributes of a model.
MIT
The Requires
by Vipul Basapati
dev-master
9999999-devThis package will be used to encrypt attributes of a model.
MIT
The Requires
by Vipul Basapati
This package will be used to encrypt attributes of a model.
Purpose: This package will be used to encrypt attributes of a model., (*1)
You can install the package in your laravel installation by firing up the below command:, (*2)
composer require bvipul/laravel-encrypts-attributes
, (*3)
After that, add provider to config/app.php
, (*4)
After installing the package, register the Bvipul\EncryptsAttributes\EncryptsServiceProvider::class
in your config/app.php
configuration file:, (*5)
'providers' => [ // Other service providers... Bvipul\EncryptsAttributes\EncryptsServiceProvider::class ],
After this, you can add the trait this package provides, like below I have done in User.php model file., (*6)
<?php namespace App; use Illuminate\Notifications\Notifiable; use Illuminate\Foundation\Auth\User as Authenticatable; use Bvipul\EncryptsAttributes\Traits\EncryptsAttributes; class User extends Authenticatable { use Notifiable, EncryptsAttributes; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'email', 'password', ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; }
If you come across any issues please report them here., (*7)
Feel free to create any pull requests for the project. For propsing any new changes or features you want to add to the project, you can send us an email me at basapativipulkumar@gmail.com., (*8)
MIT LICENSE, (*9)
This package will be used to encrypt attributes of a model.
MIT
This package will be used to encrypt attributes of a model.
MIT