Можно ли использовать существующие правила проверки Laravel в настраиваемом правиле?
Пример: required|string|max:100
Я просто хочу сгруппировать эти правила в одно правило custom_rule_name
.
Либо этоway
Validator::extend('foo', function ($attribute, $value, $parameters, $validator) {
return $value == 'required|string|max:100';//something like this
});
или
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
class Uppercase implements Rule
{
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
return $value == 'required|string|max:100';//something like this
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
return 'The :attribute must be uppercase.';
}
}
Дайте мне знать, если есть возможность?
Спасибо,
Kaleem