Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 23, 2018 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/41bfab121a2bc47d0817bc96039b9ec3 to your computer and use it in GitHub Desktop.
Save uno-de-piera/41bfab121a2bc47d0817bc96039b9ec3 to your computer and use it in GitHub Desktop.
<?php
namespace App;
use App\Traits\Encryptable;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
/**
* App\User
*/
class User extends Authenticatable
{
use Notifiable, Encryptable;
/**
* @var array
*/
protected $encryptable = [
'name', 'email',
];
/**
* 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',
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment