1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 02:11:34 +02:00
invoiceninja/app/Http/ValidationRules/Expense/UniqueExpenseNumberRule.php
Benjamin Beganović ae88d5e08e php-cs-fixer format
2020-11-25 15:19:52 +01:00

77 lines
1.7 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Http\ValidationRules\Expense;
use App\Models\Expense;
use Illuminate\Contracts\Validation\Rule;
/**
* Class UniqueExpenseNumberRule.
*/
class UniqueExpenseNumberRule implements Rule
{
public $input;
public function __construct($input)
{
$this->input = $input;
}
/**
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
return $this->checkIfExpenseNumberUnique(); //if it exists, return false!
}
/**
* @return string
*/
public function message()
{
return 'Expense number already taken';
}
/**
* @return bool
*/
private function checkIfExpenseNumberUnique() : bool
{
if (empty($this->input['number'])) {
return true;
}
$expense = Expense::query()
->where('number', $this->input['number'])
->withTrashed();
// if(isset($this->input['client_id']))
// $expense->where('client_id', $this->input['client_id']);
return $expense->exists();
// $expense = Expense::where('client_id', $this->input['client_id'])
// ->where('number', $this->input['number'])
// ->withTrashed()
// ->exists();
// if ($expense) {
// return false;
// }
// return true;
}
}