mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-22 01:40:56 -04:00
Fix for referral count
This commit is contained in:
parent
c7cb72546f
commit
6b12cfb63a
@ -160,6 +160,11 @@ class Company extends Eloquent
|
|||||||
public function getPlanDetails($includeInactive = false, $includeTrial = true)
|
public function getPlanDetails($includeInactive = false, $includeTrial = true)
|
||||||
{
|
{
|
||||||
$account = $this->accounts()->first();
|
$account = $this->accounts()->first();
|
||||||
|
|
||||||
|
if (! $account) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return $account->getPlanDetails($includeInactive, $includeTrial);
|
return $account->getPlanDetails($includeInactive, $includeTrial);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user