Add ulid and ascii validation message (#6046)
This commit is contained in:
@@ -22,6 +22,7 @@ return [
|
|||||||
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
|
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
|
||||||
'alpha_num' => 'The :attribute must only contain letters and numbers.',
|
'alpha_num' => 'The :attribute must only contain letters and numbers.',
|
||||||
'array' => 'The :attribute must be an array.',
|
'array' => 'The :attribute must be an array.',
|
||||||
|
'ascii' => 'The :attribute must only contain single-byte alphanumeric characters and symbols.',
|
||||||
'before' => 'The :attribute must be a date before :date.',
|
'before' => 'The :attribute must be a date before :date.',
|
||||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||||
'between' => [
|
'between' => [
|
||||||
@@ -141,6 +142,7 @@ return [
|
|||||||
'uploaded' => 'The :attribute failed to upload.',
|
'uploaded' => 'The :attribute failed to upload.',
|
||||||
'uppercase' => 'The :attribute must be uppercase.',
|
'uppercase' => 'The :attribute must be uppercase.',
|
||||||
'url' => 'The :attribute must be a valid URL.',
|
'url' => 'The :attribute must be a valid URL.',
|
||||||
|
'ulid' => 'The :attribute must be a valid ULID.',
|
||||||
'uuid' => 'The :attribute must be a valid UUID.',
|
'uuid' => 'The :attribute must be a valid UUID.',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user