Viewing file: CheckThousandSeparator.php (951 B) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
* @package CheckThousandSeparator
* @author TechVillage <support@techvill.org>
* @contributor Sakawat Hossain Rony <[sakawat.techvill@gmail.com]>
* @created 17-08-2021
*/
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
class CheckThousandSeparator implements Rule
{
/**
* Create a new rule instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
return in_array($value, [',', '.']);
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
return __('The selected :x is invalid.', ['x' => __('Thousand Separator')]);
}
}
|