Skip to content

Instantly share code, notes, and snippets.

@Cipa
Created November 2, 2022 02:30
Show Gist options
  • Save Cipa/09f01d63e3581b5d9df57fd9687874be to your computer and use it in GitHub Desktop.
Save Cipa/09f01d63e3581b5d9df57fd9687874be to your computer and use it in GitHub Desktop.
validation rule
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
class UniqueNumbers implements Rule
{
/**
* Create a new rule instance.
*
* @return void
*/
public function __construct($numbers)
{
$this->numbers = $numbers;
}
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
return count(array_keys($this->numbers, $value)) == 1 ? true : false;
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
return 'Duplicate number detected';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment