diff --git a/app/Models/Payment.php b/app/Models/Payment.php index 0fc6da08ed..e1556b7d60 100644 --- a/app/Models/Payment.php +++ b/app/Models/Payment.php @@ -295,10 +295,6 @@ class Payment extends EntityModel */ public function getCompletedAmount() { - if ($this->isFailed() || $this->isVoided()) { - return 0; - } - return $this->amount - $this->refunded; }