*/ protected $fillable = [ 'nama', 'email', 'password', 'role_id', 'alamat', 'foto_ktp', 'nohp', 'nik', 'gender', 'status', ]; /** * 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', 'id' => 'string', ]; //JWT /** * 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 []; } //JWT //Relasi public function pemilik_kontak(){ return $this->hasMany(Contact::class, 'email', 'pemilik_kontak'); } public function relasi_kontak(){ return $this->hasMany(Contact::class, 'email', 'relasi_kontak'); } //Relasi }