'decimal:2', 'card_balance' => 'decimal:2', 'points' => 'integer', ]; } public function customer(): BelongsTo { return $this->belongsTo(Customer::class); } public function transactions(): HasMany { return $this->hasMany(AccountTransaction::class, 'customer_account_id'); } }