1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Ninja/Repositories/ReferralRepository.php
2016-07-21 15:35:23 +03:00

32 lines
691 B
PHP

<?php namespace App\Ninja\Repositories;
use App\Models\Account;
class ReferralRepository
{
public function getCounts($userId)
{
$accounts = Account::where('referral_user_id', $userId)->get();
$counts = [
'free' => 0,
'pro' => 0,
'enterprise' => 0
];
foreach ($accounts as $account) {
$counts['free']++;
$plan = $account->getPlanDetails(false, false);
if ($plan) {
$counts['pro']++;
if ($plan['plan'] == PLAN_ENTERPRISE) {
$counts['enterprise']++;
}
}
}
return $counts;
}
}