mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01: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)
|
||||
{
|
||||
$account = $this->accounts()->first();
|
||||
|
||||
if (! $account) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return $account->getPlanDetails($includeInactive, $includeTrial);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user