*/ protected $primaryKey = 'nomor_identitas'; protected $fillable = [ 'nama_lengkap', 'no_telp', 'email', 'password', 'nomor_identitas', 'foto_identitas', 'saldo', 'pin', 'qr_code' ]; /** * 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', ]; // Rest omitted for brevity /** * 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 []; } public function saldo() { return $this->hasMany(SaldoModel::class); } public function kendaraan() { return $this->hasMany(KendaraanModel::class); } public function transaksi() { return $this->hasMany(TransaksiModel::class); } }