1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Ninja/Repositories/ReferralRepository.php
2017-01-30 21:40:43 +02:00

34 lines
693 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;
}
}