*/ protected $fillable = [ 'name', 'numero_empleado', 'rfc', 'fecha_ingreso', 'id_unidad_negocio', 'id_politica_vacaciones', 'role', 'isBlocked', 'email', 'password', 'estatus' ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', ]; public function getJWTIdentifier(){ return $this->getKey(); } public function getJWTCustomClaims(){ return []; } }