24 lines
542 B
PHP
24 lines
542 B
PHP
<?php
|
|
|
|
namespace App\Rules;
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
use Illuminate\Support\Str;
|
|
|
|
class ValidPhoneInputRule implements Rule
|
|
{
|
|
public function passes($attribute, $value)
|
|
{
|
|
if (!is_string($value) || !Str::startsWith($value, '+')) {
|
|
return false;
|
|
}
|
|
|
|
$phoneUtil = \libphonenumber\PhoneNumberUtil::getInstance();
|
|
return $phoneUtil->isValidNumber($phoneUtil->parse($value));
|
|
}
|
|
|
|
public function message()
|
|
{
|
|
return 'The :attribute is invalid.';
|
|
}
|
|
} |