Fix for referral count
This commit is contained in:
parent
d0adbb6d06
commit
41371022b8
1 changed files with 5 additions and 0 deletions
|
|
@ -155,6 +155,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…
Add table
Reference in a new issue