*/ protected $fillable = [ 'username', 'fullname', 'nip', 'email', 'no_hp', 'divisi', 'tgl_lahir', 'jenis_kelamin', 'agama', 'foto', 'role_id', 'warehouse_id', 'address', 'password', 'created_by', 'updated_by', ]; public function warehouse() { return $this->belongsTo(m_warehouse::class, 'warehouse_id'); } /** * 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', 'password' => 'hashed', ]; /** * Get the identifier that will be stored in the subject claim of the JWT. * * @return mixed */ public function getJWTIdentifier() { return $this->getKey(); } /** * Return a key value array, containing any custom claims to be added to the JWT. * * @return array */ public function getJWTCustomClaims() { return []; } }