diff --git a/app/Models/Company.php b/app/Models/Company.php index f1bfd81b9a2b..b0213f9d0149 100644 --- a/app/Models/Company.php +++ b/app/Models/Company.php @@ -107,6 +107,11 @@ class Company extends Eloquent return false; } + // if they've already been pro return false + if ($this->plan_expires && $this->plan_expires != '0000-00-00') { + return false; + } + // if they've already had a discount or a promotion is active return false if ($this->discount_expires || $this->hasActivePromo()) { return false;