'integer', 'amount' => 'decimal:2', 'balance_after' => 'decimal:2', ]; } public function account(): BelongsTo { return $this->belongsTo(CustomerAccount::class, 'customer_account_id'); } public function customer(): BelongsTo { return $this->belongsTo(Customer::class); } }