2020-04-21 07:16:45 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-21 07:16:45 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-04-21 07:16:45 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-04-21 07:16:45 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\ValidationRules\Ninja;
|
|
|
|
|
|
|
|
use App\Models\Company;
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class CanStoreClientsRule.
|
2020-04-21 07:16:45 +02:00
|
|
|
*/
|
|
|
|
class CanStoreClientsRule implements Rule
|
|
|
|
{
|
2023-08-07 07:37:30 +02:00
|
|
|
/**
|
|
|
|
* @var \App\Models\Company $company
|
|
|
|
*/
|
|
|
|
public Company $company;
|
2022-03-06 04:41:08 +01:00
|
|
|
|
2023-08-07 07:37:30 +02:00
|
|
|
public function __construct(public int $company_id)
|
2020-04-21 07:16:45 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $attribute
|
|
|
|
* @param mixed $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function passes($attribute, $value)
|
|
|
|
{
|
2023-08-07 07:37:30 +02:00
|
|
|
$this->company = Company::query()->find($this->company_id);
|
2020-04-21 07:16:45 +02:00
|
|
|
|
2022-03-06 04:41:08 +01:00
|
|
|
return $this->company->clients()->count() < $this->company->account->hosted_client_count;
|
2020-04-21 07:16:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
2022-03-06 04:41:08 +01:00
|
|
|
return ctrans('texts.limit_clients', ['count' => $this->company->account->hosted_client_count]);
|
2020-04-21 07:16:45 +02:00
|
|
|
}
|
|
|
|
}
|