Ver código fonte

update: fix capacity

tokumeikoi 2 anos atrás
pai
commit
bd1ec0fe89
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      app/Services/PlanService.php

+ 1 - 1
app/Services/PlanService.php

@@ -19,7 +19,7 @@ class PlanService
     {
         if ($this->plan->capacity_limit === NULL) return true;
         $count = self::countActiveUsers();
-        $count = $count[$this->plan->plan_id];
+        $count = $count[$this->plan->id];
         return ($this->plan->capacity_limit - $count) > 0;
     }