/** * 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', ];
/** * The attributes that should be cast to native types. * * @var array */ protected$casts = [ 'email_verified_at' => 'datetime', ]; /** * Get the identifier that will be stored in the subject claim of the JWT. * * @return mixed */ publicfunctiongetJWTIdentifier() { return$this->getKey(); }
/** * Return a key value array, containing any custom claims to be added to the JWT. * * @return array */ publicfunctiongetJWTCustomClaims() { return []; } }