diff --git a/src/Mmanos/Billing/CustomerBillableTrait/Billing.php b/src/Mmanos/Billing/CustomerBillableTrait/Billing.php index a6cf59a..e0023fd 100644 --- a/src/Mmanos/Billing/CustomerBillableTrait/Billing.php +++ b/src/Mmanos/Billing/CustomerBillableTrait/Billing.php @@ -152,7 +152,9 @@ public function delete(array $properties = array()) return $this; } - $this->customer->delete(); + try { + $this->customer->delete(); + } catch (Exception $e) {} $this->refresh();